addition-with-vars.icasm 122 B

123456
  1. // Stores two values into "variables", and then adds them
  2. ld @op1, 10
  3. ld @op2, 37
  4. add @op2, @op1, 0d2
  5. add 0d2, 3, 0d12
  6. hlt