Browse Source

Fix typo in register/misa.rs

Jakob Weisblat 7 years ago
parent
commit
8597f1c32d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/register/misa.rs

+ 1 - 1
src/register/misa.rs

@@ -24,7 +24,7 @@ impl Misa {
         let value = match () {
             #[cfg(target_pointer_width = "32")]
             () => (self.bits >> 30) as u8,
-            #[cfg(target_pointer_widht = "64")]
+            #[cfg(target_pointer_width = "64")]
             () => (self.bits >> 62) as u8,
         };
         match value {