| 1255 | } |
| 1256 | |
| 1257 | void fxEchoAddress(txMachine* the, txSlot* theSlot) |
| 1258 | { |
| 1259 | uintptr_t aValue = (uintptr_t)theSlot; |
| 1260 | int aShift; |
| 1261 | |
| 1262 | fxEcho(the, " value=\"@"); |
| 1263 | aShift = (8 * sizeof(aValue)) - 4; |
| 1264 | while (aShift >= 0) { |
| 1265 | fxEchoCharacter(the, c_read8(gxHexaDigits + ((aValue >> aShift) & 0x0F))); |
| 1266 | aShift -= 4; |
| 1267 | } |
| 1268 | fxEcho(the, "\""); |
| 1269 | } |
| 1270 | |
| 1271 | void fxEchoArrayBuffer(txMachine* the, txSlot* theInstance, txInspectorNameList* theList) |
| 1272 | { |
no test coverage detected