Files
vortex/kernel/vx_os/vx_io/vx_io.h
felsabbagh3 6c64fa35f8 Restructure
2019-03-22 04:14:52 -04:00

9 lines
233 B
C

#pragma once
#include <stdbool.h>
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_print_str(char *);
void vx_printf(char *, unsigned);