initial import, completely untested, does not compile yet

This commit is contained in:
mrdudz
2014-11-29 14:18:48 +01:00
parent fed3179d3b
commit faccc5a3d6
23 changed files with 1974 additions and 0 deletions

19
libsrc/pcengine/call.s Normal file
View File

@@ -0,0 +1,19 @@
;
; 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