mirror of
https://github.com/cc65/cc65.git
synced 2024-11-06 15:06:07 +00:00
19 lines
198 B
ArmAsm
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 |