Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,4 @@
|
|||
org $00000000
|
||||
;512 bytes containing anything really
|
||||
include "myFile.asm" ;assuming no org or align directives are in this file,
|
||||
;its starting memory location is guaranteed to be $00000200 (512 in decimal)
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
foo:
|
||||
LEA myData,A0
|
||||
MOVE.W (A0)+,D0
|
||||
|
||||
MyData:
|
||||
include "dataTables.inc" ;a list of defined data constants that aren't supposed to be executed as instructions
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
foo:
|
||||
LEA myData,A0
|
||||
MOVE.W (A0)+,D0
|
||||
RTS ;return from subroutine, preventing the CPU from executing the data below.
|
||||
|
||||
MyData:
|
||||
include "dataTables.inc" ;a list of defined data constants that aren't supposed to be executed as instructions
|
||||
Loading…
Add table
Add a link
Reference in a new issue