29 Dec 2015
Convert Hex to Dec and Dec to Hex
Convert from Decimal to Hexadecimal
WORD DecToHex(WORD wDec) { return (wDec / 1000) * 4096 + ((wDec % 1000) / 100) * 256 + ((wDec % 100) / 10) * 16 + (wDec % 10); }
Convert from Hexadecimal to Decimal
WORD HexToDec(WORD wHex) { return (wHex / 4096) * 1000 + ((wHex % 4096) / 256) * 100 + ((wHex % 256) / 16) * 10 + (wHex % 16); }