Files
RomWBW/Source/HBIOS/ch376-native/source-doc/base-drv/print.h
2025-06-21 13:34:20 +10:00

12 lines
268 B
C

#ifndef __XPRINT
#define __XPRINT
#include <stdint.h>
#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