5 lines
76 B
NASM
5 lines
76 B
NASM
; Endlessly doubles A by adding itself to itself.
|
|
lda 1
|
|
add b
|
|
ldb a
|
|
jpr loop |