diff options
| author | Miguel <m.i@gmx.at> | 2018-09-09 11:49:30 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-09-09 11:49:30 +0200 |
| commit | e85a68e1536a0f6505300e1cb79f06b9743b00f7 (patch) | |
| tree | c503a7681720925c5f4923e26c01f7b2e697023d /driver/vesa.c | |
| parent | fc1d491479abd74a1e038ad9ff7d4d330d79e4a8 (diff) | |
fixing implicit func declarations!
Diffstat (limited to 'driver/vesa.c')
| -rw-r--r-- | driver/vesa.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/driver/vesa.c b/driver/vesa.c index 090596c..bdf1c9a 100644 --- a/driver/vesa.c +++ b/driver/vesa.c @@ -34,12 +34,14 @@ void vesa_update_cursor(uint32_t col,uint32_t row) } // helper_funcs +/* static void vesa_print_char_col(int x, int y, char c, char col_fg, char col_bg) { // uint16_t attrib = (col_bg << 4) | (col_fg & 0x0F); // uint16_t* video_mem=(uint16_t *)SCR_VIDEOMEM+(x+y*SCR_REAL_WIDTH); // *video_mem=c | (attrib << 8) ; } +*/ // same colors as in screen.h static uint32_t cols[] = { |
