home *** CD-ROM | disk | FTP | other *** search
- proc main
-
- loop :
- waitfor
- ": X",matchcase then DoBuHo,
- ": x",matchcase then DoBuHo,
- ">>",matchcase then DoScn,
- "[Y/n]",matchcase then DoYesNo,
- "ID :",matchcase then DoID,
- "「ム",matchcase then DoOK,
- "エゥク」シシソ...",matchcase then DoEnter,
- "22;4H",matchcase then DoNO
- until 60
- DoBuHo:
- transmit "1150899084"
- transmit "^M"
- goto loop
- DoScn:
- transmit "9"
- transmit "^M"
- goto loop
- DoYesNo:
- transmit "y"
- transmit "^M"
- goto loop
- DoID:
- transmit "^M"
- goto loop
- DoEnter:
- transmit "^M"
- goto loop
- DoOK:
- transmit "^M"
- goto loop
- DoNO:
- transmit "1"
- transmit "^M"
- goto Done
- BailOut:
- halt
- Done:
- endproc
-