mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
12 lines
268 B
C
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
|