12 lines
250 B
C
12 lines
250 B
C
#ifndef DVGA_H
|
|
#define DVGA_H
|
|
|
|
#include <vfs.h>
|
|
|
|
void vga_init();
|
|
void vga_putchar(char c);
|
|
|
|
uint32_t vga_write(vfs_node_t* node, uint32_t offset, uint32_t size, uint8_t* buf);
|
|
uint32_t vga_seek(vfs_node_t* node, uint32_t offset, int whence);
|
|
|
|
#endif |