bond/x64/src/include/kernel/hal/print.h

11 lines
186 B
C
Raw Normal View History

2018-01-25 09:53:35 +00:00
#ifndef _S_PRINT_H_
#define _S_PRINT_H_
#include "abi.h"
#include "type.h"
void KABI hal_printf(const char* str, ...);
void KABI hal_clear_screen();
void KABI hal_print_init();
#endif