mirror of
https://github.com/avinal/The-Hack-Assembler.git
synced 2026-01-09 22:58:32 +05:30
11 lines
125 B
NASM
11 lines
125 B
NASM
// This file is part of www.nand2tetris.org
|
|
|
|
// Computes R0 = 2 + 3 (R0 refers to RAM[0])
|
|
|
|
@2
|
|
D=A
|
|
@3
|
|
D=D+A
|
|
@0
|
|
M=D
|