diff options
Diffstat (limited to 'tests/stack_machine_swap/instructions.s.tcl')
-rwxr-xr-x | tests/stack_machine_swap/instructions.s.tcl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/stack_machine_swap/instructions.s.tcl b/tests/stack_machine_swap/instructions.s.tcl new file mode 100755 index 0000000..a44ecf9 --- /dev/null +++ b/tests/stack_machine_swap/instructions.s.tcl @@ -0,0 +1,17 @@ +#!/usr/bin/env tclsh + +source tclasm.tcl + +set_sp 0 + +const h0000DEAD +const h0000BEEF + +swap + +## Because values were swapped, h0000DEAD should get written, first, at lower +## address (h100) and h0000BEEF should be written next (at h200) +store h000100 +store h000200 + +halt |