diff options
author | Benji Dial <Benji3.141@gmail.com> | 2020-08-13 23:59:14 -0400 |
---|---|---|
committer | Benji Dial <Benji3.141@gmail.com> | 2020-08-13 23:59:14 -0400 |
commit | 7ff724fe8f709440da9c730fdb8dcbaa4f989ed5 (patch) | |
tree | e7f768ff56798bef3edc166a30e9cb8d7f25bd1e /src/kernel/vesa.h | |
parent | 2ddbeb9f7214f6d3feef651eba83e6a9d120a743 (diff) | |
download | portland-os-7ff724fe8f709440da9c730fdb8dcbaa4f989ed5.tar.gz |
FAT16 directory enumeration, making many functions static, new 'log' functions to wrap vga and serial
Diffstat (limited to 'src/kernel/vesa.h')
-rw-r--r-- | src/kernel/vesa.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/kernel/vesa.h b/src/kernel/vesa.h deleted file mode 100644 index b2f17c8..0000000 --- a/src/kernel/vesa.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef VESA_H -#define VESA_H - -#include <stdint.h> - -extern uint16_t screen_width; -extern uint16_t screen_height; -extern uint8_t bpp; - -typedef uint32_t color; - -void put_pixel(uint16_t x, uint16_t y, color c); -void screen_fill(color c); - -void init_vesa(); - -#endif
\ No newline at end of file |