2021-02-16 20:19:48 +00:00
|
|
|
( controller )
|
2021-02-14 19:51:36 +00:00
|
|
|
|
|
|
|
:dev/r fff8 ( const read port )
|
|
|
|
:dev/w fff9 ( const write port )
|
|
|
|
|
2021-02-23 21:49:36 +00:00
|
|
|
&Point2d { x 2 y 2 }
|
|
|
|
|
|
|
|
;pos Point2d
|
|
|
|
;sprite 2
|
2021-02-14 19:51:36 +00:00
|
|
|
|
|
|
|
|0100 @RESET
|
|
|
|
|
2021-02-15 03:43:33 +00:00
|
|
|
#03 =dev/r ( set dev/read to controller )
|
|
|
|
#02 =dev/w ( set dev/write to sprite )
|
2021-02-23 21:49:36 +00:00
|
|
|
#0080 =pos.x #0040 =pos.y ( origin )
|
2021-02-14 19:51:36 +00:00
|
|
|
|
2021-02-23 21:49:36 +00:00
|
|
|
#12 ,up_icn ~pos.x ~pos.y ,draw-sprite JSR
|
2021-02-14 19:51:36 +00:00
|
|
|
|
|
|
|
BRK
|
|
|
|
|
|
|
|
|c000 @FRAME
|
|
|
|
|
2021-02-15 04:23:00 +00:00
|
|
|
#03 =dev/r ( set dev/read to controller )
|
2021-02-15 01:00:17 +00:00
|
|
|
|
2021-02-20 18:34:10 +00:00
|
|
|
,default_icn =sprite
|
|
|
|
|
2021-02-15 04:23:00 +00:00
|
|
|
#00 IOR #10 NEQ ,next1 ROT JMP? POP2
|
2021-02-20 18:34:10 +00:00
|
|
|
,up_icn =sprite
|
2021-02-23 21:49:36 +00:00
|
|
|
~pos.y #0001 SUB2 =pos.y
|
2021-02-14 19:51:36 +00:00
|
|
|
@next1
|
2021-02-15 04:23:00 +00:00
|
|
|
#00 IOR #20 NEQ ,next2 ROT JMP? POP2
|
2021-02-20 18:34:10 +00:00
|
|
|
,down_icn =sprite
|
2021-02-23 21:49:36 +00:00
|
|
|
~pos.y #0001 ADD2 =pos.y
|
2021-02-14 19:51:36 +00:00
|
|
|
@next2
|
2021-02-15 04:23:00 +00:00
|
|
|
#00 IOR #40 NEQ ,next3 ROT JMP? POP2
|
2021-02-20 18:34:10 +00:00
|
|
|
,left_icn =sprite
|
2021-02-23 21:49:36 +00:00
|
|
|
~pos.x #0001 SUB2 =pos.x
|
2021-02-15 04:23:00 +00:00
|
|
|
@next3
|
2021-02-15 01:00:17 +00:00
|
|
|
#00 IOR #80 NEQ ,end ROT JMP? POP2
|
2021-02-20 18:34:10 +00:00
|
|
|
,right_icn =sprite
|
2021-02-23 21:49:36 +00:00
|
|
|
~pos.x #0001 ADD2 =pos.x
|
2021-02-15 01:00:17 +00:00
|
|
|
@end
|
2021-02-14 19:51:36 +00:00
|
|
|
( redraw )
|
2021-02-23 21:49:36 +00:00
|
|
|
#13 ~sprite ~pos.x ~pos.y ,draw-sprite JSR
|
2021-02-14 19:51:36 +00:00
|
|
|
|
|
|
|
BRK
|
|
|
|
|
2021-02-20 18:34:10 +00:00
|
|
|
@default_icn [ 3c7e ffdb ffe7 7e3c ]
|
|
|
|
@up_icn [ 2466 e7db ffff 7e3c ]
|
|
|
|
@down_icn [ 3c7e ffff dbe7 6624 ]
|
|
|
|
@left_icn [ 3c7e ef1f 1fef 7e3c ]
|
|
|
|
@right_icn [ 3c7e f7f8 f8f7 7e3c ]
|
|
|
|
|
|
|
|
@draw-sprite
|
|
|
|
IOW2 ( y byte )
|
|
|
|
IOW2 ( x byte )
|
2021-02-14 19:51:36 +00:00
|
|
|
IOW2 ( sprite address )
|
2021-02-20 18:34:10 +00:00
|
|
|
IOW ( layer-color )
|
2021-02-14 19:51:36 +00:00
|
|
|
RTS
|
|
|
|
|
|
|
|
|d000 @ERROR BRK
|
|
|
|
|
2021-02-20 18:34:10 +00:00
|
|
|
|FFF0 [ 02ac 05bb 0b53 ] ( palette )
|
2021-02-14 19:51:36 +00:00
|
|
|
|FFFA .RESET .FRAME .ERROR
|