| 1773 | } |
| 1774 | |
| 1775 | void fxReadSlotArray(txMachine* the, txSnapshot* snapshot, txSlot* address, txSize length) |
| 1776 | { |
| 1777 | txChunk* chunk = (txChunk*)(((txByte*)(address)) - sizeof(txChunk)); |
| 1778 | txSize size = chunk->size - sizeof(txChunk); |
| 1779 | while (size > 0) { |
| 1780 | fxReadSlot(the, snapshot, address, 0); |
| 1781 | address++; |
| 1782 | size -= sizeof(txSlot); |
| 1783 | } |
| 1784 | } |
| 1785 | |
| 1786 | void fxReadSlotTable(txMachine* the, txSnapshot* snapshot, txSlot** address, txSize length) |
| 1787 | { |
no test coverage detected