home *** CD-ROM | disk | FTP | other *** search
/ Chip: Shareware for Win 95 / Chip-Shareware-Win95.bin / ostatni / sms32 / 99snake.asm < prev    next >
Encoding:
Assembly Source File  |  1997-03-15  |  632 b   |  19 lines

  1.     CLO
  2. Start:
  3.     MOV    AL,FF    ; Reset the maze
  4.     OUT    04    ; Send control data to port 04
  5.     MOV    AL,27    ; 2 means left.  7 distance units
  6.     OUT    04    ; Send control data to port 04
  7.     MOV    AL,4F    ; 4 means down.  Down 15 units.
  8.     OUT    04    ; Send control data to port 04
  9.     OUT    04    ; Do it twice to move further
  10.     MOV    AL,1E    ; 1 means right.  E means 14.
  11.     OUT    04    ; Send control data to port 04
  12.     MOV    AL,8F    ; 8 means up.  15 distance units.
  13.     OUT    04    ; Send control data to port 04
  14.     OUT    04    ; Send control data to port 04
  15.     MOV    AL,27    ; 2 means left.  7 distance units
  16.     OUT    04    ; Send control data to port 04
  17.     JMP    Start    ; Repeat the whole sequence
  18.     END
  19.