| 1292 | } |
| 1293 | |
| 1294 | void GenCodeCmdPushInt(VMCmd cmd) |
| 1295 | { |
| 1296 | EMIT_COMMENT("PUSH int"); |
| 1297 | |
| 1298 | if(cmd.flag == ADDRESS_ABOLUTE) |
| 1299 | EMIT_OP_ADDR(o_push, sDWORD, cmd.argument+paramBase); |
| 1300 | else |
| 1301 | EMIT_OP_RPTR(o_push, sDWORD, rEBP, cmd.argument+paramBase); |
| 1302 | } |
| 1303 | |
| 1304 | void GenCodeCmdPushFloat(VMCmd cmd) |
| 1305 | { |
nothing calls this directly
no test coverage detected