summaryrefslogtreecommitdiff
path: root/projects/06/Assembler.hs
diff options
context:
space:
mode:
Diffstat (limited to 'projects/06/Assembler.hs')
-rw-r--r--projects/06/Assembler.hs8
1 files changed, 5 insertions, 3 deletions
diff --git a/projects/06/Assembler.hs b/projects/06/Assembler.hs
index 28f506d..3583121 100644
--- a/projects/06/Assembler.hs
+++ b/projects/06/Assembler.hs
@@ -88,6 +88,8 @@ parseCode code = mconcat $ parseLine (addSyms codeWithoutJunk 0 16 initTable) <$
where codeWithoutJunk = stripJunk code
codeWithoutLabels = stripLabels codeWithoutJunk
-main = do
- code <- getContents
- putStr $ parseCode code
+code0 = "// This file is part of www.nand2tetris.org\n// and the book \"The Elements of Computing Systems\"\n// by Nisan and Schocken, MIT Press.\n// File name: projects/06/add/Add.asm\n\n// Computes R0 = 2 + 3 (R0 refers to RAM[0])\n\n@2\nD=A\n@3\nD=D+A\n@0\nM=D"
+
+--main = do
+ --code <- getContents
+ --putStr $ parseCode code