chore(barrel_shifter): remove panic from ASR
This commit is contained in:
parent
25c57a4cc7
commit
faa8f724a0
|
@ -138,8 +138,6 @@ pub fn arithmeticRight(comptime S: bool, cpsr: *CPSR, rm: u32, total_amount: u8)
|
||||||
cpsr.c.write(result >> 31 & 1 == 1);
|
cpsr.c.write(result >> 31 & 1 == 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std.debug.panic("[BarrelShifter] implement arithmetic shift right", .{});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn rotateRight(comptime S: bool, cpsr: *CPSR, rm: u32, total_amount: u8) u32 {
|
pub fn rotateRight(comptime S: bool, cpsr: *CPSR, rm: u32, total_amount: u8) u32 {
|
||||||
|
|
Loading…
Reference in New Issue