From fa35a38190b82d7154250fc2633cd08f139e6627 Mon Sep 17 00:00:00 2001 From: Joseph Rogers Date: Tue, 13 Sep 2022 09:27:51 +0200 Subject: [PATCH] Delete halfwords.s --- src/test/resources/tests/programs/halfwords.s | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/test/resources/tests/programs/halfwords.s diff --git a/src/test/resources/tests/programs/halfwords.s b/src/test/resources/tests/programs/halfwords.s deleted file mode 100644 index c87612d..0000000 --- a/src/test/resources/tests/programs/halfwords.s +++ /dev/null @@ -1,18 +0,0 @@ -main: - li x1, 0x11223344 - li x2, 0x55667788 - li x10, 0x100 - sw x1, 0(x10) - sw x2, 4(x10) - lw x3, 2(x10) - lh x4, 3(x10) - lb x5, 3(x10) - lhu x6, 3(x10) - lbu x7, 3(x10) - sw x1, 8(x10) - sw x1, 9(x10) - sh x2, 9(x10) - sb x2, 11(x10) - lw x12, 8(x10) - lw x13, 12(x10) - done