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