rename terminal.c to put.c to separate put and get func

This commit is contained in:
starnakin 2024-09-07 14:16:14 +02:00
parent e3d8ef6154
commit 5b23c60bf2

View File

@ -16,8 +16,8 @@ static inline uint16_t vga_entry(unsigned char uc, uint8_t color)
return (uint16_t) uc | (uint16_t) color << 8; return (uint16_t) uc | (uint16_t) color << 8;
} }
static const size_t VGA_WIDTH = 80; #define VGA_WIDTH 80
static const size_t VGA_HEIGHT = 25; #define VGA_HEIGHT 25
size_t terminal_row; size_t terminal_row;
size_t terminal_column; size_t terminal_column;