From eb3fd68203fee7c63245c702914c2acd3332d65a Mon Sep 17 00:00:00 2001 From: Julian Blake Kongslie Date: Thu, 22 Sep 2022 11:29:07 -0700 Subject: Initial commit. --- tests/countdown.hex | 5 +++++ tests/fib-mem.hex | 9 +++++++++ tests/fib-regs.hex | 6 ++++++ tests/loop-with-add.hex | 2 ++ tests/loop.hex | 1 + 5 files changed, 23 insertions(+) create mode 100644 tests/countdown.hex create mode 100644 tests/fib-mem.hex create mode 100644 tests/fib-regs.hex create mode 100644 tests/loop-with-add.hex create mode 100644 tests/loop.hex (limited to 'tests') diff --git a/tests/countdown.hex b/tests/countdown.hex new file mode 100644 index 0000000..1185774 --- /dev/null +++ b/tests/countdown.hex @@ -0,0 +1,5 @@ +93 90 A3 03 +92 90 02 +92 90 FF 03 +91 90 00 +93 90 A4 00 diff --git a/tests/fib-mem.hex b/tests/fib-mem.hex new file mode 100644 index 0000000..521301b --- /dev/null +++ b/tests/fib-mem.hex @@ -0,0 +1,9 @@ +93 90 A1 A0 A0 A8 B1 05 +93 90 A1 A0 A1 A0 03 +92 91 F0 04 +92 90 A1 02 +92 92 F8 04 +91 A1 B2 03 +B1 05 +92 90 B8 03 +93 90 AF 00 diff --git a/tests/fib-regs.hex b/tests/fib-regs.hex new file mode 100644 index 0000000..0f8c5f8 --- /dev/null +++ b/tests/fib-regs.hex @@ -0,0 +1,6 @@ +93 91 A1 03 +92 90 02 +92 B1 03 +92 90 A1 03 +92 91 A2 03 +93 90 A4 00 diff --git a/tests/loop-with-add.hex b/tests/loop-with-add.hex new file mode 100644 index 0000000..7c93780 --- /dev/null +++ b/tests/loop-with-add.hex @@ -0,0 +1,2 @@ +03 +91 90 00 diff --git a/tests/loop.hex b/tests/loop.hex new file mode 100644 index 0000000..29fe69d --- /dev/null +++ b/tests/loop.hex @@ -0,0 +1 @@ +93 90 00 -- cgit v1.2.3