mirror of
https://git.sr.ht/~rabbits/uxn
synced 2024-11-08 23:35:05 +00:00
34 lines
679 B
Text
34 lines
679 B
Text
( a blank file )
|
|
|
|
%RTN { JMP2r }
|
|
|
|
( devices )
|
|
|
|
|0100 ;Console { pad 8 char 1 byte 1 short 2 string 2 }
|
|
|0110 ;Screen { width 2 height 2 pad 4 x 2 y 2 color 1 }
|
|
|0120 ;Sprite { pad 8 x 2 y 2 addr 2 color 1 }
|
|
|0130 ;Controller { p1 1 }
|
|
|0140 ;Keys { key 1 }
|
|
|0150 ;Mouse { x 2 y 2 state 1 chord 1 }
|
|
|0160 ;File { pad 8 name 2 length 2 load 2 save 2 }
|
|
|0180 ;Audio { wave 2 envelope 2 pad 4 volume 1 pitch 1 play 1 value 2 delay 2 finish 1 }
|
|
|01a0 ;DateTime { year 2 month 1 day 1 hour 1 minute 1 second 1 dotw 1 doty 2 isdst 1 refresh 1 }
|
|
|01F0 ;System { pad 8 r 2 g 2 b 2 }
|
|
|
|
( vectors )
|
|
|
|
|0200 ^RESET JMP
|
|
|0204 ,ERROR JMP2
|
|
|0208 ,FRAME JMP2
|
|
|
|
@RESET
|
|
|
|
BRK
|
|
|
|
@FRAME
|
|
|
|
BRK
|
|
|
|
@ERROR
|
|
|
|
BRK
|