Fixed a bug in the logging of memory errors; incremented version to 0.35

Change-Id: I6cc34881abe359bfe2cc8ae5e84fb2296c49096a
This commit is contained in:
David Banks 2015-06-20 16:56:49 +01:00
parent 68f6dccf89
commit 5322c18443
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -185,7 +185,7 @@ char *triggerStrings[NUM_TRIGGERS] = {
};
#define VERSION "0.34"
#define VERSION "0.35"
#ifdef EMBEDDED_6502
#define NUM_CMDS 27
@ -815,7 +815,7 @@ void test(unsigned int start, unsigned int end, int data) {
actual = readByte();
expected = getData(i, data);
if (expected != actual) {
log0("Fail at %04X (Wrote: %02X, Read back %02X)\n", i, expected, actual);
log0("Fail at %04lX (Wrote: %02X, Read back %02X)\n", i, expected, actual);
fail++;
}
}