aboutsummaryrefslogtreecommitdiff
path: root/tclasm.tcl
diff options
context:
space:
mode:
authorWojciech Kosior <kwojtus@protonmail.com>2020-09-05 17:58:56 +0200
committerWojciech Kosior <kwojtus@protonmail.com>2020-09-05 17:58:56 +0200
commit2c528314ebe29a1c94b6c03fd1b0e2668ee25dff (patch)
tree834eba7d51db338f7ebd898b49039b15ffa5d477 /tclasm.tcl
parent9c0a347262ad5aa8564570ac672450b3e46c8570 (diff)
downloadAGH-engineering-thesis-2c528314ebe29a1c94b6c03fd1b0e2668ee25dff.tar.gz
AGH-engineering-thesis-2c528314ebe29a1c94b6c03fd1b0e2668ee25dff.zip
add div 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 17aa8aa..4293441 100644
--- a/tclasm.tcl
+++ b/tclasm.tcl
@@ -176,3 +176,8 @@ proc add {} {
proc sub {} {
puts 0011000000000001
}
+
+
+proc div {} {
+ puts 0011000000000010
+}