1use crate::records::register_a_64::RegisterA64; 2 3impl RegisterA64 { 4 #[inline] 5 pub const fn register_a_64_operator_eq(&self, rhs: RegisterA64) -> bool { 6 self.bits == rhs.bits 7 } 8}