Originally posted by NickFitz
View Post

.add100points LDX #100 .loop CLC LDA scorelo ADC #1 STA scorelo LDA scorehi ADC #0 STA scorehi DEX BNE loop RTS
.add100points LDX #100 .loop CLC LDA scorelo ADC #1 STA scorelo LDA scorehi ADC #0 STA scorehi DEX BNE loop RTS
.add100points CLC LDA scorelo ADC #100 STA scorelo LDA scorehi ADC #0 STA scorehi RTS
.add100points CLC LDA scorelo ADC #100 STA scorelo LDA scorehi ADC #0 STA scorehi RTS
Comment