From: Lauri Kasanen Date: Mon, 1 May 2017 17:12:18 +0000 (+0300) Subject: callptr4 X-Git-Tag: V2.17~142^2~11 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a84463a3dfb74b200fc208ab30f89de54631a846;p=cc65 callptr4 --- diff --git a/libsrc/runtime/callptr4.s b/libsrc/runtime/callptr4.s new file mode 100644 index 000000000..9a15609aa --- /dev/null +++ b/libsrc/runtime/callptr4.s @@ -0,0 +1,10 @@ +; +; CC65 runtime: call function via pointer in ptr4 +; + + .export callptr4 + .importzp ptr4 + +callptr4: + jmp (ptr4) ; jump there +