title: "PrintNumber" description: TRSE built-in method (from IDE help)
PrintNumber
Systems: C64, MEGA65, PLUS4, C128, VIC20, PET, X16
Parameters: b
Prints a hexadecimal number (byte) at the current screenmemory position (see moveto).
Example:
var i:byte = 64;;
begin
moveto(5,5,hi(screen_char_loc));
printnumber(i); // will print 40 (in hex)
...