12345678910111213141516171819202122232425262728293031323334 |
- KeyBoard_Functions
- move.b $bfec01,d0
- ror.b
- btst
- beq.s End_Keys
- andi.b
- cmp.b
- bne.s End_Keys
- pause_game_loop
- move.b $bfec01,d0
- ror.b
- btst
- bne.s pause_game_loop
- wait_for_restart_key
- move.b $bfec01,d0
- ror.b
- btst
- beq.s wait_for_restart_key
- andi.b
- cmp.b
- bne.s notkey0
- btst
- bne.s notkey0
- bset
- notkey0
-
- End_Keys
- *move.b
- rts
|