Files
kernels/runtime/io/vx_io.h
2019-11-16 14:51:20 -05:00

20 lines
338 B
C

#pragma once
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
static char * hextoa[] = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"};
void vx_print_hex(unsigned);
void vx_printf(char *, unsigned);
void vx_print_str(char *);
void vx_printc(unsigned, char c);
#ifdef __cplusplus
}
#endif