mirror of
https://github.com/cc65/cc65.git
synced 2024-11-01 11:04:34 +00:00
11 lines
174 B
ArmAsm
11 lines
174 B
ArmAsm
;
|
|
; CC65 runtime: call function via pointer in ptr4
|
|
;
|
|
|
|
.export callptr4
|
|
.importzp ptr4
|
|
|
|
callptr4:
|
|
jmp (ptr4) ; jump there
|
|
|