program walk-through

This commit is contained in:
Greg Gauthier 2025-01-17 15:48:06 +00:00
parent 65658e9942
commit 8c69e49592

View File

@ -10,9 +10,9 @@
54 ; 54 ;
60 CLD ; Clear Decimal Mode 60 CLD ; Clear Decimal Mode
70 ADDNRS CLC ; Clear Carry 70 ADDNRS CLC ; Clear Carry
80 LDA #2 ; Load Accumulator From Immediate 2 80 LDA #2 ; Load Accumulator
90 ADC #2 ; Add Immediate 2 To Accumulator With Carry 90 ADC #2 ; Add w/Carry
100 STA $CB ; Store Accumulator To Location 203 100 STA $CB ; Store Accumulator
110 RTS ; Return To Stack 110 RTS ; Return To Stack
120 .END ; Program End Macro 120 .END ; Program End Macro
</pre> </pre>