diff --git a/src/devices/uart_16550.rs b/src/devices/uart_16550.rs
index d482504b054c2affbc114df2d5f9d6bcf4d26dad..b1b8e8d47bbc48aaf46cedb2a2a81e38f7e43c86 100644
--- a/src/devices/uart_16550.rs
+++ b/src/devices/uart_16550.rs
@@ -67,6 +67,7 @@ impl<T: Io> SerialPort<T>
 {
     pub fn init(&mut self) {
         //TODO: Cleanup
+        unsafe {
         self.int_en.write(0x00.into());
         self.line_ctrl.write(0x80.into());
         self.data.write(0x01.into());
@@ -75,18 +76,19 @@ impl<T: Io> SerialPort<T>
         self.fifo_ctrl.write(0xC7.into());
         self.modem_ctrl.write(0x0B.into());
         self.int_en.write(0x01.into());
+        }
     }
 
     fn line_sts(&self) -> LineStsFlags {
         LineStsFlags::from_bits_truncate(
-            (self.line_sts.read() & 0xFF.into()).try_into().unwrap_or(0)
+            (unsafe {self.line_sts.read()} & 0xFF.into()).try_into().unwrap_or(0)
         )
     }
 
     pub fn receive(&mut self) -> Option<u8> {
         if self.line_sts().contains(LineStsFlags::INPUT_FULL) {
             Some(
-                (self.data.read() & 0xFF.into()).try_into().unwrap_or(0)
+                (unsafe {self.data.read()} & 0xFF.into()).try_into().unwrap_or(0)
             )
         } else {
             None
@@ -95,7 +97,7 @@ impl<T: Io> SerialPort<T>
 
     pub fn send(&mut self, data: u8) {
         while ! self.line_sts().contains(LineStsFlags::OUTPUT_EMPTY) {}
-        self.data.write(data.into());
+        unsafe {self.data.write(data.into())}
     }
 
     pub fn write(&mut self, buf: &[u8]) {