Files
hack-assembler/asm-samples/Add.asm
lejulien ba4d9afda9 Adding asm & hack samples
Those are the examples and the asm & hack (assembled) from the project 6 of
nand2tetris
2026-05-19 18:57:20 +02:00

12 lines
203 B
NASM

// This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// Computes R0 = 2 + 3 (R0 refers to RAM[0])
@2
D=A
@3
D=D+A
@0
M=D