From c09015dd04e14a9b99250ed06fb5a47e2efa387f Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Tue, 10 Jan 2012 13:10:42 -0600 Subject: tests: mv tests/* -> tests/tcg Signed-off-by: Anthony Liguori Signed-off-by: Anthony Liguori --- tests/lm32/test_muli.S | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 tests/lm32/test_muli.S (limited to 'tests/lm32/test_muli.S') diff --git a/tests/lm32/test_muli.S b/tests/lm32/test_muli.S deleted file mode 100644 index d6dd4a0f7e..0000000000 --- a/tests/lm32/test_muli.S +++ /dev/null @@ -1,45 +0,0 @@ -.include "macros.inc" - -start - -test_name MULI_1 -mvi r1, 0 -muli r3, r1, 0 -check_r3 0 - -test_name MULI_2 -mvi r1, 1 -muli r3, r1, 0 -check_r3 0 - -test_name MULI_3 -mvi r1, 0 -muli r3, r1, 1 -check_r3 0 - -test_name MULI_4 -mvi r1, 1 -muli r3, r1, 1 -check_r3 1 - -test_name MULI_5 -mvi r1, 2 -muli r3, r1, -1 -check_r3 -2 - -test_name MULI_6 -mvi r1, -2 -muli r3, r1, -1 -check_r3 2 - -test_name MULI_7 -mvi r1, 0x1234 -muli r3, r1, 0x789 -check_r3 0x8929d4 - -test_name MULI_8 -mvi r3, 4 -muli r3, r3, 4 -check_r3 16 - -end -- cgit v1.2.3