/ TX-0 Assembly Program - Simple addition
/ Adds two numbers and stores the result

        cla
        add num1
        add num2
        sto result
        hlt

num1:   40000
num2:   20000
result: 0
