X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=src%2Fhexfile.c;h=5ec2055abe1769982c82fd0b48ad504c5bac43fe;hb=fd6fa7c56a209cb5d4fa15f59a837b88795529ee;hp=9716aad03bd37ea3aeb3f1f7caf179a4706ba8f4;hpb=b23541495010180e3a69e3e1f64c934b28775878;p=emu8051.git diff --git a/src/hexfile.c b/src/hexfile.c index 9716aad..5ec2055 100644 --- a/src/hexfile.c +++ b/src/hexfile.c @@ -59,8 +59,10 @@ Ascii2Hex(char *istring, int length) result <<= 4; result += ascii_code; - } else + } else { printf("%s: In Ascii2Hex(), syntax error.\n", PACKAGE); + printf(" str=%s, length=%d\n", istring, length); + } } return result; }