aboutsummaryrefslogtreecommitdiff
path: root/tests/stack_machine_old_swap/instructions.s.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stack_machine_old_swap/instructions.s.tcl')
-rwxr-xr-xtests/stack_machine_old_swap/instructions.s.tcl15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/stack_machine_old_swap/instructions.s.tcl b/tests/stack_machine_old_swap/instructions.s.tcl
new file mode 100755
index 0000000..c17314e
--- /dev/null
+++ b/tests/stack_machine_old_swap/instructions.s.tcl
@@ -0,0 +1,15 @@
+#!/usr/bin/env tclsh
+
+source tclasm.tcl
+
+set_sp h7FFFC
+const h00AD00DE
+stack down
+const h00EF00BE
+swap
+## Because values were swapped, h00AD00DE should get written, first, at lower
+## address (h100) and h00EF00BE should be written next (at h104)
+store@ h00100
+stack down
+store@ h00104
+halt