diff --git a/src/inst.rs b/src/inst.rs
index 20a11e7702f00ac31c3c6a3917b4b39cd35c9668..5b2599c3fae762b735df12da1d272e45d666b05e 100644
--- a/src/inst.rs
+++ b/src/inst.rs
@@ -3150,7 +3150,7 @@ fn rl(cpu: &mut Cpu, value: u8) -> u8 {
 fn rlc(cpu: &mut Cpu, value: u8) -> u8 {
     cpu.set_carry((value & 0x80) == 0x80);
 
-    let result = (value << 1) | (value >> 7);
+    let result = value.rotate_left(1);
 
     cpu.set_sub(false);
     cpu.set_zero(result == 0);
@@ -3179,7 +3179,7 @@ fn rr(cpu: &mut Cpu, value: u8) -> u8 {
 fn rrc(cpu: &mut Cpu, value: u8) -> u8 {
     cpu.set_carry((value & 0x1) == 0x1);
 
-    let result = (value >> 1) | (value << 7);
+    let result = value.rotate_right(1);
 
     cpu.set_sub(false);
     cpu.set_zero(result == 0);
@@ -3323,7 +3323,7 @@ fn swap(cpu: &mut Cpu, value: u8) -> u8 {
     cpu.set_half_carry(false);
     cpu.set_carry(false);
 
-    (value << 4) | (value >> 4)
+    value.rotate_right(4)
 }
 
 /// Helper function to shift an `u8` to the left and update CPU