18 lines
312 B
Text
18 lines
312 B
Text
;8-bit data
|
|
MyArray:
|
|
DC.B 1,2,3,4,5
|
|
DC.B 6,7,8,9,10
|
|
DC.B 11,12,13,14,15
|
|
EVEN ;needed to ensure proper alignment after a byte array with an odd number of entries.
|
|
|
|
;16-bit data
|
|
MyArrayW:
|
|
DC.W 1,2,3,4,5
|
|
DC.W 6,7,8,9,10
|
|
DC.W 11,12,13,14,15
|
|
|
|
;32-bit data
|
|
MyArrayL:
|
|
DC.L 1,2,3,4,5
|
|
DC.L 6,7,8,9,10
|
|
DC.L 11,12,13,14,15
|