| 295 | } |
| 296 | |
| 297 | txU1* fxDebugEvalAtom(txMachine* the, txU1* p, Atom* atom, txString t) |
| 298 | { |
| 299 | atom->atomSize = (p[0] << 24) + (p[1] << 16) + (p[2] << 8) + p[3]; |
| 300 | if ((t[0] != p[4]) || (t[1] != p[5]) || (t[2] != p[6]) || (t[3] != p[7])) |
| 301 | mxUnknownError("invalid buffer"); |
| 302 | return p + 8; |
| 303 | } |
| 304 | |
| 305 | void fxDebugEvalBuffer(txMachine* the, txString buffer, txSlot* expression) |
| 306 | { |