Enum juicebox_asm::Reg16
source · #[repr(u8)]pub enum Reg16 {
Show 16 variants
ax = 0,
cx = 1,
dx = 2,
bx = 3,
sp = 4,
bp = 5,
si = 6,
di = 7,
r8w = 8,
r9w = 9,
r10w = 10,
r11w = 11,
r12w = 12,
r13w = 13,
r14w = 14,
r15w = 15,
}
Expand description
Definition of 16 bit registers.
Variants§
ax = 0
cx = 1
dx = 2
bx = 3
sp = 4
bp = 5
si = 6
di = 7
r8w = 8
r9w = 9
r10w = 10
r11w = 11
r12w = 12
r13w = 13
r14w = 14
r15w = 15
Trait Implementations§
impl Copy for Reg16
Auto Trait Implementations§
impl RefUnwindSafe for Reg16
impl Send for Reg16
impl Sync for Reg16
impl Unpin for Reg16
impl UnwindSafe for Reg16
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more