From faa8f724a08c50d3595e641cc142e3ee4c3a4056 Mon Sep 17 00:00:00 2001 From: Rekai Musuka Date: Tue, 18 Jan 2022 14:16:39 -0400 Subject: [PATCH] chore(barrel_shifter): remove panic from ASR --- src/cpu/arm/barrel_shifter.zig | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/cpu/arm/barrel_shifter.zig b/src/cpu/arm/barrel_shifter.zig index f32a76d..3408793 100644 --- a/src/cpu/arm/barrel_shifter.zig +++ b/src/cpu/arm/barrel_shifter.zig @@ -138,8 +138,6 @@ pub fn arithmeticRight(comptime S: bool, cpsr: *CPSR, rm: u32, total_amount: u8) 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 {