mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
11 lines
247 B
C
11 lines
247 B
C
#ifndef __XPRINT
|
|
#define __XPRINT
|
|
|
|
#include <stdlib.h>
|
|
|
|
extern void print_hex(const char c) __z88dk_fastcall;
|
|
extern void print_string(const char *p) __z88dk_fastcall;
|
|
extern void print_uint16(const uint16_t n) __z88dk_fastcall;
|
|
|
|
#endif
|