| 1794 | } |
| 1795 | |
| 1796 | void GenCodeCmdCopyI(VMCmd cmd) |
| 1797 | { |
| 1798 | (void)cmd; |
| 1799 | EMIT_COMMENT("COPY dword"); |
| 1800 | |
| 1801 | EMIT_OP_REG_RPTR(o_mov, rEAX, sDWORD, rESP, 0); |
| 1802 | EMIT_OP_REG(o_push, rEAX); |
| 1803 | } |
| 1804 | |
| 1805 | |
| 1806 | void GenCodeCmdGetAddr(VMCmd cmd) |
nothing calls this directly
no test coverage detected