bond/include/hal/print.h

15 lines
264 B
C
Raw Normal View History

2018-01-26 08:43:22 +00:00
#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