commit | 97b5d8bfbd173dbe6eda51f3963877c1485b1a7b | [log] [tgz] |
---|---|---|
author | swissChili <swisschili@fastmail.com> | Sat Aug 15 20:00:54 2020 -0700 |
committer | swissChili <swisschili@fastmail.com> | Sat Aug 15 20:00:54 2020 -0700 |
tree | b35cc2e3b028b2666e69873806c112646536998b | |
parent | 90db50ae7df0fa46ecf34fa4f4601a69eb746635 [diff] [blame] |
Add step 1 of assembler
diff --git a/as/test/test.s b/as/test/test.s new file mode 100644 index 0000000..edca24a --- /dev/null +++ b/as/test/test.s
@@ -0,0 +1,5 @@ +start: + lda #$32 ; Store $32 in a + tax ; Transfer a to x + stx $200 ; Store x at $200 + jmp ($FFAA) ; Jump to the address at $FFAA