Definition:
#include <aPrint.tea>
| void aPrint_IntHex( | int i); |
Parameters:
| i | - | The integer to format and display as a hexadecimal number. |
Return Value:
This routine does not return a value.
Description:
This routine formats the integer variable as a 4-digit hexadecimal number and displays the result on the Console Output Area. The TEA virtual machine places each character of the text representation of the hexadecimal value in a packet with a leading cmdVM_MSG byte (0x84) and process ID byte and sends it across the link for display.
Example:
aPrint_IntHex(1000);
This would add the characters "03E8" to the current output line for the Console.
aPrint_IntHex(-45);
This would add the characters "FFBB" to the current output line for the Console.
Related:
version: 1.0, build n.a.
© Copyright 1994-2012 Acroname, Inc., Boulder, Colorado. All rights reserved.