blob: d1ae19512fb9b1e35316a71c15204f832e303f45 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
// 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/07/MemoryAccess/BasicTest/BasicTest.vm
// Executes pop and push commands using the virtual memory segments.
push constant 10
pop local 0
|