7 lines
198 B
Text
7 lines
198 B
Text
MyFunction:
|
|
LINK A6,#-16 ;create a stack frame of 16 bytes. Now you can safely write to anywhere from (SP+0) to (SP+15) inclusive.
|
|
|
|
;;;; your code goes here.
|
|
|
|
UNLK A6 ;free the stack frame
|
|
RTS
|