aboutsummaryrefslogtreecommitdiff
path: root/tests/stack_machine_tee/instructions.s.tcl
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 /tests/stack_machine_tee/instructions.s.tcl
parentf7a82b643e867e18bee1e41037634c43d969e74b (diff)
downloadAGH-engineering-thesis-4743aa2c82e8c38935f6ae43e71a5f45e776556e.tar.gz
AGH-engineering-thesis-4743aa2c82e8c38935f6ae43e71a5f45e776556e.zip
Add bench for tee instruction
Diffstat (limited to 'tests/stack_machine_tee/instructions.s.tcl')
-rwxr-xr-xtests/stack_machine_tee/instructions.s.tcl15
1 files changed, 15 insertions, 0 deletions
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