You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
185 B
ArmAsm
14 lines
185 B
ArmAsm
12 years ago
|
;
|
||
|
; Ullrich von Bassewitz, 06.08.1998
|
||
|
;
|
||
|
; CC65 runtime: call function via pointer in ax
|
||
|
;
|
||
|
|
||
|
.export callax
|
||
|
.importzp ptr1
|
||
|
|
||
|
callax: sta ptr1
|
||
|
stx ptr1+1
|
||
|
jmp (ptr1) ; jump there
|
||
|
|