1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-14 14:26:27 +00:00
Files
cc65/libsrc/pce/call.s
2014-11-29 15:13:40 +01:00

19 lines
198 B
ArmAsm

;
; Ullrich von Bassewitz, 06.08.1998
;
; CC65 runtime: call function via pointer in ax
;
.export callax
.code
callax:
sta vec
stx vec+1
jmp (vec) ; jump there
.bss
vec:
.res 2