diff options
| author | Miguel <m.i@gmx.at> | 2018-09-10 22:31:48 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-09-10 22:31:48 +0200 |
| commit | a7ca82133bcb8139bb9d11aa717657ef42ab6cfe (patch) | |
| tree | befef8186e0adb819ae77b9fc89c9a37b900859f /driver/vesa.h | |
| parent | fe83c82693ae231368d1e8c196fb975c3df1dd30 (diff) | |
fixed bug in asm_pit_rate_
Diffstat (limited to 'driver/vesa.h')
| -rw-r--r-- | driver/vesa.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/driver/vesa.h b/driver/vesa.h index 7122d68..168013f 100644 --- a/driver/vesa.h +++ b/driver/vesa.h @@ -1,4 +1,5 @@ #include <stdint.h> +#include "lib/printf/printf.h" void vesa_update_cursor(uint32_t col,uint32_t row); void vesa_console_put_char(uint8_t c,uint8_t color_bg, uint8_t color_fg, uint32_t x, uint32_t y); @@ -50,3 +51,4 @@ void PutConsoleChar(char c, int color); void PutConsole(char *str, int color); void vesa_put_rect(int x, int y, int w , int h, int color); void PutFont(char c, int x,int y, int color_fg,int color_bg); +void PutString(char *str, int x,int y, int color, va_list va); |
