aboutsummaryrefslogtreecommitdiff
path: root/tclasm.tcl
diff options
context:
space:
mode:
authorWojciech Kosior <kwojtus@protonmail.com>2020-09-05 18:21:53 +0200
committerWojciech Kosior <kwojtus@protonmail.com>2020-09-05 18:21:53 +0200
commit8d92524d4c46493ad83ebd493dabd3f88e11037b (patch)
tree62973748aa831b2b64241d5a8b27565abdc707c8 /tclasm.tcl
parent2c528314ebe29a1c94b6c03fd1b0e2668ee25dff (diff)
downloadAGH-engineering-thesis-8d92524d4c46493ad83ebd493dabd3f88e11037b.tar.gz
AGH-engineering-thesis-8d92524d4c46493ad83ebd493dabd3f88e11037b.zip
add mul instruction together with bench
Diffstat (limited to 'tclasm.tcl')
-rw-r--r--tclasm.tcl5
1 files changed, 5 insertions, 0 deletions
diff --git a/tclasm.tcl b/tclasm.tcl
index 4293441..c5b1cb3 100644
--- a/tclasm.tcl
+++ b/tclasm.tcl
@@ -181,3 +181,8 @@ proc sub {} {
proc div {} {
puts 0011000000000010
}
+
+
+proc mul {} {
+ puts 0011000000000011
+}