| 194 | } |
| 195 | |
| 196 | void writeF(float f, int index) { |
| 197 | struct FPU_Float value; |
| 198 | value.f = f; |
| 199 | memory->writed(HEAP_ADDRESS + 4 * index, value.i); |
| 200 | } |
| 201 | |
| 202 | void writeD(double d, int index) { |
| 203 | struct FPU_Double value; |
no test coverage detected