uxn/examples/core.usm

29 lines
265 B
Plaintext
Raw Normal View History

2021-02-04 18:23:04 -05:00
( define some variables in the zero-page )
2021-02-01 14:58:47 -05:00
2021-02-04 16:49:03 -05:00
;var1
;var2
2021-02-04 21:25:49 -05:00
@0100
:RESET ( --- )
2021-02-05 00:39:03 -05:00
,1234
BRK
2021-02-04 18:23:04 -05:00
@c000 ( much further.. )
:FRAME ( --- )
2021-02-05 00:39:03 -05:00
,ab ,0008 str
BRK
2021-02-04 18:23:04 -05:00
@d000 ( further still.. )
:ERROR ( --- )
2021-02-05 00:39:03 -05:00
,cdef
BRK
2021-02-04 18:23:04 -05:00
@FFFA ( vectors, last 3 shorts )
.RESET
.FRAME
.ERROR