RosettaCodeData/Task/Memory-allocation/68000-Assembly/memory-allocation-1.68000
2023-07-01 13:44:08 -04:00

7 lines
176 B
Text

MyFunction:
LINK A6,#-16 ;create a stack frame of 16 bytes. Now you can safely write to (SP+0) thru (SP+15).
;;;; your code goes here.
UNLK A6 ;free the stack frame
RTS