This repository has been archived on 2025-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
portland-os/src/kernel/vga.h

11 lines
No EOL
156 B
C

#ifndef VGA_H
#define VGA_H
#include <stdint.h>
void vga_set_color(uint8_t color);
void vga_blank();
void vga_scroll();
void vga_printch(char ch);
#endif