static uint8_t *emulator_memory = NULL;
// trace related variables
-static uint16_t traceLen = 0;
+static uint16_t traceLen;
int tracing = 1; //Last global one.. todo static?
// get the address of BigBuf
{
memset(BigBuf,0,BIGBUF_SIZE);
if (verbose)
- Dbprintf("Buffer cleared (%i bytes)",BIGBUF_SIZE);
+ Dbprintf("Buffer cleared (%i bytes)",BIGBUF_SIZE);
}
traceLen += iLen;
// parity bytes
- if (iLen != 0) {
+ if (num_paritybytes != 0) {
if (parity != NULL) {
memcpy(trace + traceLen, parity, num_paritybytes);
} else {