Skip to main content

luaur_code_gen/methods/
register_a_64_operator_ne.rs

1use crate::records::register_a_64::RegisterA64;
2
3impl RegisterA64 {
4    #[inline]
5    pub const fn register_a_64_operator_ne(&self, rhs: RegisterA64) -> bool {
6        self.bits != rhs.bits
7    }
8}
9
10impl PartialEq<RegisterA64> for &RegisterA64 {
11    #[inline]
12    fn eq(&self, other: &RegisterA64) -> bool {
13        self.bits == other.bits
14    }
15}