home *** CD-ROM | disk | FTP | other *** search
- proc main
-
- loop :
- waitfor
- ": X",matchcase then DoBuHo,
- ": x",matchcase then DoBuHo,
- "[Y/n]",matchcase then DoYesNo,
- "ID :",matchcase then DoID,
- "エュキッチヨシシソ.", matchcase then DoOK,
- "チ「タフオソ(GO)",matchcase then DoNO
- until 60
-
- DoBuHo:
- transmit "1119171192"
- transmit "^M"
- goto loop
-
- DoYesNo:
- transmit "y"
- transmit "^M"
- goto loop
-
- DoID:
- transmit "^M"
-
- waitfor "「ム " until 60
- if FALSE == $SUCCESS then
- goto BailOut
- endif
- transmit "^M"
- goto loop
-
- DoOK:
- transmit "^M"
- goto loop
-
- DoNO:
- transmit "11"
- transmit "^M"
- goto Done
-
- BailOut:
- halt
- Done:
- endproc
-
-
-