bond/include/hal/print.h
2018-01-31 14:10:24 -05:00

15 lines
264 B
C

#ifndef _HAL_PRINT_H_
#define _HAL_PRINT_H_
#include "type.h"
#include "kernel/hal/print.h"
void KABI hal_assert(uint32_t expression, char *message);
void KABI hal_printf(const char *str, ...);
void KABI hal_clear_screen();
void KABI hal_print_init();
#endif