| 185 | } |
| 186 | |
| 187 | void writeTopDouble(int index, bool pop = false) { |
| 188 | pushCode8(0xdd); |
| 189 | pushCode8(rm(true, pop ? 3 : 2, cpu->big ? 5 : 6)); |
| 190 | if (cpu->big) |
| 191 | pushCode32(4 * index); |
| 192 | else |
| 193 | pushCode16(4 * index); |
| 194 | } |
| 195 | |
| 196 | void writeF(float f, int index) { |
| 197 | struct FPU_Float value; |
no test coverage detected