/ PDP-12 Assembly - Add Two Numbers
/ This program adds two numbers and stores the result

*200
START,  CLA CLL     / Clear AC and Link
        TAD NUM1    / Load first number
        TAD NUM2    / Add second number
        DCA RESULT  / Store result
        HLT         / Halt

NUM1,   0777        / First number (octal)
NUM2,   0001        / Second number (octal)
RESULT, 0000        / Result storage

$