aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojciech Kosior <kwojtus@protonmail.com>2020-09-02 09:40:03 +0200
committerWojciech Kosior <kwojtus@protonmail.com>2020-09-02 09:40:03 +0200
commit4743aa2c82e8c38935f6ae43e71a5f45e776556e (patch)
treef5278543d3ba9bbb7381114a745fe3a8aed5ff12
parentf7a82b643e867e18bee1e41037634c43d969e74b (diff)
downloadAGH-engineering-thesis-4743aa2c82e8c38935f6ae43e71a5f45e776556e.tar.gz
AGH-engineering-thesis-4743aa2c82e8c38935f6ae43e71a5f45e776556e.zip
Add bench for tee instruction
-rw-r--r--Makefile3
-rwxr-xr-xtests/stack_machine_tee/instructions.s.tcl15
l---------tests/stack_machine_tee/test.v1
-rw-r--r--tests/stack_machine_tee/words_to_verify.mem5
4 files changed, 23 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 53eccf2..54e8462 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,8 @@ STACK_MACHINE_TESTS := \
sub \
div \
mul \
- jump
+ jump \
+ tee
# Add other tests here if You need
TESTS := \
diff --git a/tests/stack_machine_tee/instructions.s.tcl b/tests/stack_machine_tee/instructions.s.tcl
new file mode 100755
index 0000000..e75b564
--- /dev/null
+++ b/tests/stack_machine_tee/instructions.s.tcl
@@ -0,0 +1,15 @@
+#!/usr/bin/env tclsh
+
+source tclasm.tcl
+
+set_sp h7FFFC
+const hABCDEF
+stack down
+const hA98765
+tee
+## hA98765 should now be replaced with hABCDEF - we should have
+## two hABCDEF's on stack - let's store them for verification
+store@ h00100
+stack up
+store@ h00104
+halt
diff --git a/tests/stack_machine_tee/test.v b/tests/stack_machine_tee/test.v
new file mode 120000
index 0000000..f5b6a59
--- /dev/null
+++ b/tests/stack_machine_tee/test.v
@@ -0,0 +1 @@
+../stack_machine_store/test.v \ No newline at end of file
diff --git a/tests/stack_machine_tee/words_to_verify.mem b/tests/stack_machine_tee/words_to_verify.mem
new file mode 100644
index 0000000..961f9dc
--- /dev/null
+++ b/tests/stack_machine_tee/words_to_verify.mem
@@ -0,0 +1,5 @@
+// address value
+ 00100 CDEF
+ 00102 AB
+ 00104 CDEF
+ 00106 AB