X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=src%2Fhexfile.c;h=ef828b84f49a0c8889ec491b55882c2e1a709532;hb=0f98327ed353861d9958cf77a0e00549d5147b56;hp=5ec2055abe1769982c82fd0b48ad504c5bac43fe;hpb=31155ac8672e72db0d3cab3e4167a3c00f73a2bc;p=emu8051.git diff --git a/src/hexfile.c b/src/hexfile.c index 5ec2055..ef828b8 100644 --- a/src/hexfile.c +++ b/src/hexfile.c @@ -36,6 +36,27 @@ #include "common.h" #include "memory.h" +/* Convert integer to ASCII hex string. */ +void +int2asciihex(int val, char *str, int width) +{ + if (width == 2) + sprintf(str , "%.2X", (u_int8_t) val); + else if (width == 4) + sprintf(str , "%.4X", (u_int16_t) val); +} + +/* Convert ASCII hex string to integer. */ +int +asciihex2int(char *str) +{ + int val; + + sscanf(str, "%X", &val); + + return val; +} + /* Convert an ascii string to an hexadecimal number. */ unsigned int Ascii2Hex(char *istring, int length)