5 lines
126 B
Text
5 lines
126 B
Text
;These are all equivalent, and each load the constant value 65 into the accumulator.
|
|
LDA #$41
|
|
LDA #65
|
|
LDA #%01000001
|
|
LDA #'A'
|