I would like to see these procedures in print.jal. One for printing a
byte array in hex, and one for decimal. Does anyone object to adding
these?
procedure print_byte_array_hex(volatile byte out device, byte in
data[]) is
var byte step
for count(data) - 1 using step loop
print_byte_hex(device, data[step])
device = " "
end loop
print_byte_hex(device, data[step])
end procedure
procedure print_byte_array_dec(volatile byte out device, byte in
data[]) is
var byte step
for count(data) - 1 using step loop
print_byte_dec(device, data[step])
device = " "
end loop
print_byte_dec(device, data[step])
end procedure
binary, word and dword array procedures could also be added but I
think the above two are most important.
Matt
--
You received this message because you are subscribed to the Google Groups
"jallib" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/jallib?hl=en.