7 lines
281 B
Text
7 lines
281 B
Text
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
|