Basic number to string conversions that are mostly for internal usage by macros like Write/WriteLn.
NOTE: All macros that are part of NUMB do not require DS to be the program Data Segment. These macros general low level conversion macros. These macros can be used before library initialization and do not require DS to equal CS.
ByteToHex | Convert byte to a hexadecimal string. |
WordToHex | Convert word to a Hexadecimal string. |
DWordToHex | Convert dword or word pair to a hexadecimal string. |
QWordToHex | Convert qword from memory to a hexadecimal string. |
TWordToHex | Convert tword from memory to a hexadecimal string. |
OWordToHex | Convert oword from memory to a hexadecimal string. |
YWordToHex | Convert yword from memory to a hexadecimal string. |
ZWordToHex | Convert zword from memory to a hexadecimal string. |
ByteToUInt | Convert unsigned byte to a string. |
WordToUInt | Convert unsigned word to a string. |
DWordToUInt | Convert unsigned dword or word pair to a string. |
QWordToUInt | Convert unsigned qword from memory to a string. |
TWordToUInt | Convert unsigned tword from memory to a string. |
OWordToUInt | Convert unsigned oword from memory to a string. |
YWordToUInt | Convert unsigned yword from memory to a string. |
ZWordToUInt | Convert unsigned zword from memory to a string. |
ByteToSInt | Convert signed byte to a string. |
WordToSInt | Convert signed word to a string. |
DWordToSInt | Convert signed dword or word pair to a string. |
QWordToSInt | Convert signed qword from memory to a string. |
TWordToSInt | Convert signed tword from memory to a string. |
OWordToSInt | Convert signed oword from memory to a string. |
YWordToSInt | Convert signed yword from memory to a string. |
ZWordToSInt | Convert signed zword from memory to a string. |
ByteToBin | Convert byte to a binary string. |
WordToBin | Convert word to a binary string. |
DWordToBin | Convert dword or word pair to a binary string. |
QWordToBin | Convert qword from memory to a binary string. |
TWordToBin | Convert tword from memory to a binary string. |
OWordToBin | Convert oword from memory to a binary string. |
YWordToBin | Convert yword from memory to a binary string. |
ZWordToBin | Convert zword from memory to a binary string. |