mirror of
https://github.com/mre/mos6502.git
synced 2024-11-24 11:31:00 +00:00
Use correct ca65 assembler file extension
This commit is contained in:
parent
fa6e4f49f1
commit
d9499fa419
@ -1,4 +1,4 @@
|
||||
; euclid.a65
|
||||
; euclid.ca65
|
||||
; A program to find the greatest common divisor of two numbers
|
||||
|
||||
.ORG $1000
|
||||
@ -6,7 +6,7 @@
|
||||
; .algo
|
||||
LDA $00 ; Load from F to A
|
||||
; .algo_
|
||||
sec ; Set carry flag
|
||||
SEC ; Set carry flag
|
||||
SBC $01 ; Subtract S from the number in A (from F)
|
||||
BEQ end ; Jump to .end if the difference is zero
|
||||
BMI swap ; Jump to .swap if the difference is negative
|
Loading…
Reference in New Issue
Block a user