commit | dab15a62100fca488c5bbbfed678aa63eec450d4 | [log] [tgz] |
---|---|---|
author | swissChili <swisschili@fastmail.com> | Mon Aug 17 15:41:27 2020 -0700 |
committer | swissChili <swisschili@fastmail.com> | Mon Aug 17 15:41:27 2020 -0700 |
tree | ebbafc966611c3682dacc86df4f58c55071bf393 | |
parent | 7acb4ce5b95b32eb4b03fcc824b99837e967232d [diff] [blame] |
Add code generator to assembler, re compile colors.dat with assembler
diff --git a/as/test/colors.s b/as/test/colors.s new file mode 100644 index 0000000..3c705be --- /dev/null +++ b/as/test/colors.s
@@ -0,0 +1,13 @@ +;;; Shows some nice colors on the screen + + LDY #$0 +loop: + TYA + STA $200, Y + STA $300, Y + STA $400, Y + STA $500, Y + INY + CMP #$ff + BCC loop + BRK