added compiler/assembler target, lib compiles

This commit is contained in:
mrdudz
2014-11-29 15:13:40 +01:00
parent faccc5a3d6
commit 86e6abfcd9
22 changed files with 0 additions and 0 deletions

19
libsrc/pce/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