move some things from targettest to samples

This commit is contained in:
mrdudz
2022-02-05 16:55:57 +01:00
parent 1af84ed9a0
commit 16acb7675e
37 changed files with 231 additions and 42 deletions

12
samples/getsp.s Normal file
View File

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