diff options
author | iximeow <me@iximeow.net> | 2025-04-09 00:02:54 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2025-04-09 00:02:54 -0700 |
commit | 8f485c856fae8fef283f5391b49fcc0db8288ea5 (patch) | |
tree | dc18c2059b76901cfbfc380b7664b234b6ae3da3 /tests/from_brain.rs | |
parent | 2bf4b55491d2100734089652fce2048d711ac71a (diff) |
system control register names, more cleanup
Diffstat (limited to 'tests/from_brain.rs')
-rw-r--r-- | tests/from_brain.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/from_brain.rs b/tests/from_brain.rs index df6880a..6a5dd17 100644 --- a/tests/from_brain.rs +++ b/tests/from_brain.rs @@ -48,10 +48,10 @@ fn supervisor() { test_display(&0b0110_11_10011_00110_11_0_00010_011_10110u32.to_le_bytes(), "{ R22 = iassignr(R6) }"); // ok - test_display(&0b0110_0111000_00010_11_0011010_0000110u32.to_le_bytes(), "{ S6 = R2 }"); + test_display(&0b0110_0111000_00010_11_0011010_0000110u32.to_le_bytes(), "{ ssr = R2 }"); test_display(&0b0110_1101000_00010_11_0011010_0000110u32.to_le_bytes(), "{ S7:6 = R3:2 }"); - test_display(&0b0110_11101_0100010_11_000000000_00110u32.to_le_bytes(), "{ R6 = S34 }"); + test_display(&0b0110_11101_0100010_11_000000000_00110u32.to_le_bytes(), "{ R6 = isdbcfg1 }"); test_display(&0b0110_11110_0100010_11_000000000_00110u32.to_le_bytes(), "{ R7:6 = S35:34 }"); test_display(&0b0110_1100000_00010_11_0_01101_00000000u32.to_le_bytes(), "{ tlbw(R3:2, R13) }"); |