Files
RockOS/kernel/drivers/vga/vga.h

12 lines
250 B
C
Raw Normal View History

#ifndef DVGA_H
#define DVGA_H
2026-07-10 07:46:46 -05:00
#include <vfs.h>
void vga_init();
void vga_putchar(char c);
2026-07-10 07:46:46 -05:00
uint32_t vga_write(vfs_node_t* node, uint32_t offset, uint32_t size, uint8_t* buf);
2026-07-12 04:37:46 -05:00
uint32_t vga_seek(vfs_node_t* node, uint32_t offset, int whence);
2026-07-10 07:46:46 -05:00
#endif