(args: &mut Cb, size: SizeCode, reg: u16, sp: bool)
| 2001 | |
| 2002 | #[inline] |
| 2003 | fn push_register<Cb>(args: &mut Cb, size: SizeCode, reg: u16, sp: bool) |
| 2004 | where Cb: FnMut(InstructionPart<'static>) { |
| 2005 | push_opaque(args, reg_name(size, reg, sp)); |
| 2006 | } |
| 2007 | |
| 2008 | #[inline] |
| 2009 | fn push_shift<Cb>(args: &mut Cb, style: ShiftStyle, amount: u8) |
no test coverage detected