hex/output.fj¶
———- Output Hex
Macros¶
hex¶
hex.output— output 4 bits from hex (lsb first)hex.print/1— output 8 bits fromx[:2](lsb first)hex.print/2— output n bytes fromx[:2n](lsb first)hex.print_as_digit/2— prints the ascii of the hexadecimal representation of hex.hex.print_as_digit/3— prints the ascii of the hexadecimal representation ofx[:n].hex.print_uint— print the unsignedx[:n], without leading zeros.hex.print_int— print the signedx[:n], without leading zeros.hex.print_dec_uint— printsx[:n]as an unsigned DECIMAL number (without leading zeros).hex.print_dec_int— printsx[:n]as a signed DECIMAL number (without leading zeros).
hex.print_uint¶
hex.print_uint.print_digit— print the ascii of the hexadecimal representation of hex (skip leading zeros, based on printed_something)