summaryrefslogtreecommitdiff
path: root/projects/08/ProgramFlow/BasicLoop/BasicLoopVME.tst
diff options
context:
space:
mode:
Diffstat (limited to 'projects/08/ProgramFlow/BasicLoop/BasicLoopVME.tst')
-rw-r--r--projects/08/ProgramFlow/BasicLoop/BasicLoopVME.tst20
1 files changed, 20 insertions, 0 deletions
diff --git a/projects/08/ProgramFlow/BasicLoop/BasicLoopVME.tst b/projects/08/ProgramFlow/BasicLoop/BasicLoopVME.tst
new file mode 100644
index 0000000..237fdff
--- /dev/null
+++ b/projects/08/ProgramFlow/BasicLoop/BasicLoopVME.tst
@@ -0,0 +1,20 @@
+// 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/08/ProgramFlow/BasicLoop/BasicLoopVME.tst
+
+load BasicLoop.vm,
+output-file BasicLoop.out,
+compare-to BasicLoop.cmp,
+output-list RAM[0]%D1.6.1 RAM[256]%D1.6.1;
+
+set sp 256,
+set local 300,
+set argument 400,
+set argument[0] 3,
+
+repeat 33 {
+ vmstep;
+}
+
+output;