1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-19 01:24:38 +00:00
cc65/libsrc/pce/call.s

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