RosettaCodeData/Task/Integer-sequence/8080-Assembly/integer-sequence.8080
2016-12-05 22:15:40 +01:00

7 lines
207 B
Text

ORG 0100H
MVI A, 0 ; move immediate
LOOP: INR A ; increment
; call 'PRINT' subroutine, if required
JMP LOOP ; jump unconditionally
END