| 176 | } |
| 177 | |
| 178 | void writeTopFloat(int index, bool pop = false) { |
| 179 | pushCode8(0xd9); |
| 180 | pushCode8(rm(true, pop?3:2, cpu->big ? 5 : 6)); |
| 181 | if (cpu->big) |
| 182 | pushCode32(4 * index); |
| 183 | else |
| 184 | pushCode16(4 * index); |
| 185 | } |
| 186 | |
| 187 | void writeTopDouble(int index, bool pop = false) { |
| 188 | pushCode8(0xdd); |
no test coverage detected