diff --git a/content/notes/05-6809-assembly.md b/content/notes/05-6809-assembly.md index 8cebd50da..23b8a03ed 100644 --- a/content/notes/05-6809-assembly.md +++ b/content/notes/05-6809-assembly.md @@ -118,6 +118,15 @@ The programmer's model of a computer is not the same as the hardware model. The - Load A with the value $0F - this is like A = 0x0F - `lda #$0F` + - Load A with the value stored at memory location $000F + - This is like: `A = memory[0x0F]` + - `lda $0F$` + - Transfer the value stored in B into A + - This is like `A = B` + - `tfr b,a` + +### Opcodes + ## 6502 Fibonacci in Machine Code