Thursday 29 October 2015

LMC filling memory
-------------------
        lda x
f1     add one
        sta 3
x      dat 305
        bra f1
one  dat 1
--------------------
f1     lda x
        add one
        sta f1
        bra f1
one  dat 1
x      dat 305
--------------------

No comments:

Post a Comment