RosettaCodeData/Task/Literals-Integer/6502-Assembly/literals-integer.6502
2023-07-01 13:44:08 -04:00

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'