diff options
author | Frederick Yin <fkfd@fkfd.me> | 2022-08-22 17:04:49 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2022-08-22 17:04:49 +0800 |
commit | 21c58570d3897f1f480b6cf6c572c350e7a0dd95 (patch) | |
tree | eed5ff515d322439ab843e009b00faed0e30e9c8 /projects/07/StackArithmetic/SimpleAdd | |
parent | 10c9f64f592198d78aad11ebc676629d92ca6576 (diff) |
Output assembly files in project 07
Diffstat (limited to 'projects/07/StackArithmetic/SimpleAdd')
-rw-r--r-- | projects/07/StackArithmetic/SimpleAdd/SimpleAdd.asm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/projects/07/StackArithmetic/SimpleAdd/SimpleAdd.asm b/projects/07/StackArithmetic/SimpleAdd/SimpleAdd.asm new file mode 100644 index 0000000..71d9d8d --- /dev/null +++ b/projects/07/StackArithmetic/SimpleAdd/SimpleAdd.asm @@ -0,0 +1,19 @@ +@7 +D=A +@SP +A=M +M=D +@SP +M=M+1 +@8 +D=A +@SP +A=M +M=D +@SP +M=M+1 +@SP +AM=M-1 +D=M +A=A-1 +M=D+M |