vault backup: 2022-07-29 10:33:34

This commit is contained in:
Jet Hughes 2022-07-29 10:33:34 +12:00
parent 5e5be4b3f8
commit 56eef6b945

View File

@ -4,8 +4,8 @@ aliases:
tags: tags:
- lecture - lecture
- cosc204 - cosc204
sr-due: 2022-07-29 sr-due: 2022-08-05
sr-interval: 3 sr-interval: 7
sr-ease: 250 sr-ease: 250
--- ---
@ -123,7 +123,7 @@ The programmer's model of a computer is not the same as the hardware model. The
- `lda #$0F` - `lda #$0F`
- Load A with the value stored at memory location $000F - Load A with the value stored at memory location $000F
- This is like: `A = memory[0x0F]` - This is like: `A = memory[0x0F]`
- `lda $0F$` - `lda $0F`
- Transfer the value stored in B into A - Transfer the value stored in B into A
- This is like `A = B` - This is like `A = B`
- `tfr b,a` - `tfr b,a`