chore(barrel_shifter): remove panic from ASR

This commit is contained in:
Rekai Nyangadzayi Musuka 2022-01-18 14:16:39 -04:00
parent 25c57a4cc7
commit a62cd9aa40
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ pub fn arithmeticRight(comptime S: bool, cpsr: *CPSR, rm: u32, total_amount: u8)
}
}
std.debug.panic("[BarrelShifter] implement arithmetic shift right", .{});
return result;
}
pub fn rotateRight(comptime S: bool, cpsr: *CPSR, rm: u32, total_amount: u8) u32 {