mirror of
https://github.com/rehlds/rehlds.git
synced 2025-01-04 02:55:50 +03:00
Added crlf at the file ending.
This commit is contained in:
parent
8960c2ec5e
commit
4a90fa39a1
@ -2530,7 +2530,7 @@ struct Frontend
|
|||||||
#endif
|
#endif
|
||||||
void rcl(const Reg8& dst, const Reg8& shift) {AppendInstr(I_RCL, 0xD2, 0, Imm8(2), RW(dst), Dummy(R(shift),cl));}
|
void rcl(const Reg8& dst, const Reg8& shift) {AppendInstr(I_RCL, 0xD2, 0, Imm8(2), RW(dst), Dummy(R(shift),cl));}
|
||||||
void rcl(const Mem8& dst, const Reg8& shift) {AppendInstr(I_RCL, 0xD2, 0, Imm8(2), RW(dst), Dummy(R(shift),cl));}
|
void rcl(const Mem8& dst, const Reg8& shift) {AppendInstr(I_RCL, 0xD2, 0, Imm8(2), RW(dst), Dummy(R(shift),cl));}
|
||||||
void rcl(const Reg8& dst, const Imm8& shift) {shift.GetImm() == 1 ? AppendInstr(I_RCL, 0xD0, 0, Imm8(2), RW(dst)) : AppendInstr(I_RCL, 0xC0, 0, Imm8(2), RW(dst), shift);}
|
void rcl(const Reg8& dst, const Imm8& shift) {shift.GetImm() == 1 ? AppendInstr(I_RCL, 0xD0, 0, Imm8(2), RW(dst)) : AppendInstr(I_RCL, 0xC0, 0, Imm8(2), RW(dst), shift);}
|
||||||
void rcl(const Mem8& dst, const Imm8& shift) {shift.GetImm() == 1 ? AppendInstr(I_RCL, 0xD0, 0, Imm8(2), RW(dst)) : AppendInstr(I_RCL, 0xC0, 0, Imm8(2), RW(dst), shift);}
|
void rcl(const Mem8& dst, const Imm8& shift) {shift.GetImm() == 1 ? AppendInstr(I_RCL, 0xD0, 0, Imm8(2), RW(dst)) : AppendInstr(I_RCL, 0xC0, 0, Imm8(2), RW(dst), shift);}
|
||||||
void rcr(const Reg8& dst, const Reg8& shift) {AppendInstr(I_RCR, 0xD2, 0, Imm8(3), RW(dst), Dummy(R(shift),cl));}
|
void rcr(const Reg8& dst, const Reg8& shift) {AppendInstr(I_RCR, 0xD2, 0, Imm8(3), RW(dst), Dummy(R(shift),cl));}
|
||||||
void rcr(const Mem8& dst, const Reg8& shift) {AppendInstr(I_RCR, 0xD2, 0, Imm8(3), RW(dst), Dummy(R(shift),cl));}
|
void rcr(const Mem8& dst, const Reg8& shift) {AppendInstr(I_RCR, 0xD2, 0, Imm8(3), RW(dst), Dummy(R(shift),cl));}
|
||||||
|
Loading…
Reference in New Issue
Block a user