basickernel/drivers/screen.h

14 lines
292 B
C
Raw Normal View History

2018-02-24 09:04:41 +00:00
#pragma once
#define VIDEO_ADDRESS 0xb8000
#define MAX_ROWS 25
#define MAX_COLS 80
#define WHITE_ON_BLACK 0x0f
#define REG_SCREEN_CTRL 0x3d4
#define REG_SCREEN_DATA 0x3d5
void print_char(char c, int col, int row, char attr_byte);
int get_screen_offset(int col, int row);