Skip to content
Snippets Groups Projects
Commit a3e9b208 authored by Recolic Keghart's avatar Recolic Keghart
Browse files

naive test kernel

parent 885d2f15
No related branches found
No related tags found
No related merge requests found
char *vga_begin = (char *)0xb8000;
void push_char(char c, char color) {
static int pos = 0;
vga_begin[pos++] = c;
vga_begin[pos++] = color;
}
void main() {
char *vga_begin = (char *)0xb8000;
*vga_begin = 'X';
int pos = 0;
for(int cter = 0; cter < 256; ++cter) {
push_char(cter % 10 + '0', cter);
for(int i = 1; i < 10; ++i) {
push_char(i + '0', cter);
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment