Some test cases for ca65

This commit is contained in:
Spiro Trikaliotis
2022-06-16 20:57:53 +02:00
parent 5aa75ae81f
commit 48ae6716ad
34 changed files with 87224 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
; 2022-01-17 Spiro Trikaliotis
.macro TESTER val
lda #val
.endmacro
test:
ldx #0
TESTER 1
ldx #15
TESTER 2
inx
TESTER 3
TESTER 4
dex
rts