Files
vortex/kernel/vx_os/vx_io/vx_io.c
2019-10-30 23:40:01 -04:00

15 lines
180 B
C

#include "vx_io.h"
void vx_print_hex(unsigned f)
{
vx_print_str(hextoa[f]);
}
void vx_printf(char * c, unsigned f)
{
vx_print_str(c);
vx_print_hex(f);
vx_print_str("\n");
}