all repos — nand2tetris @ 2dd25de3b00bc3e3604e10b13eece7b279a84323

my nand2tetris progress

projects/06/test/add/Add.asm

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
// This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/06/add/Add.asm

// Computes R0 = 2 + 3  (R0 refers to RAM[0])

@2
D=A
@3
D=D+A
@0
M=D