Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
MyByte:
|
||||
DC.B 0
|
||||
EVEN ;you need this to prevent alignment problems if you define an odd number of bytes.
|
||||
MyWord:
|
||||
DC.W 0 ;this takes up 2 bytes even though only one 0 was written
|
||||
MyLong:
|
||||
DC.L 0 ;this takes up 4 bytes even though only one 0 was written
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
Cursor_X equ $100000 ;byte - only comments can tell you the intended variable size.
|
||||
Cursor_Y equ $100001 ;byte
|
||||
tempWord equ $100002 ;word - also occupies $100003
|
||||
tempLong equ $100004 ;long - also occupies $100005,6,7
|
||||
Loading…
Add table
Add a link
Reference in a new issue