mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2025-02-02 13:31:25 +00:00
add print hex word function
This commit is contained in:
parent
29db2cc31e
commit
55a9d44f59
@ -46,6 +46,12 @@ void woz_print_hex(byte c) {
|
||||
#endif
|
||||
}
|
||||
|
||||
// print hex word
|
||||
void woz_print_hexword(word w) {
|
||||
woz_print_hex(*((byte *)&w+1));
|
||||
woz_print_hex(*((byte *)&w));
|
||||
}
|
||||
|
||||
// puts a character on the apple1 screen using the WOZMON routine
|
||||
void woz_putc(byte c) {
|
||||
asm {
|
||||
|
Loading…
x
Reference in New Issue
Block a user