added file I/O test program

git-svn-id: svn://svn.cc65.org/cc65/trunk@56 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg
2000-06-11 23:36:16 +00:00
parent af33f993e1
commit 22a7951bde
2 changed files with 120 additions and 0 deletions

12
testcode/lib/getsp.s Normal file
View File

@@ -0,0 +1,12 @@
.export _getsp
.importzp sp
.proc _getsp
ldx sp+1
lda sp
rts
.endproc