home *** CD-ROM | disk | FTP | other *** search
- 0 def 10 ; number A
- 1 def 3 ; number B
- 2 def 1 ; constant 1
- 3 lda 0 ; begin
- 4 sub 1
- 5 jms 12 ; A>B ?
- 6 sub 2
- 7 jms 16 ; A=B ?
- 8 lda 0 ; A>B
- 9 sub 1
- 10 sta 0
- 11 jmp 3
- 12 lda 1 ; A<B
- 13 sub 0
- 14 sta 1
- 15 jmp 3
- 16 lda 0 ; GCD AC
- 17 jmp 17 ; end
-