Skip to main content

luaur_code_gen/methods/
register_a_64_operator_eq.rs

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}