1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2025-02-09 01:30:50 +00:00

Add failing test.

This commit is contained in:
Cat's Eye Technologies 2014-04-25 23:21:00 +01:00
parent 5a794a46e6
commit 2091dada5e

View File

@ -168,6 +168,22 @@ Copy command: immediate -> word
= .data
= .space position 2
Copy command: byte-sized immediate -> word
| reserve word position
| routine main {
| copy #1 position
| }
= main:
= lda #1
= sta position
= lda #0
= sta position+1
= rts
=
= .data
= .space position 2
Copy command: word -> word
| reserve word position1