Skip to content
Snippets Groups Projects
Commit 5032b47d authored by Bensong Liu's avatar Bensong Liu
Browse files

64bit kernel working

parent 7bd211cb
No related branches found
No related tags found
1 merge request!2X64 MBR mode done.
...@@ -14,7 +14,7 @@ void main() { ...@@ -14,7 +14,7 @@ void main() {
for(auto x = 0; x < 80; ++x) { for(auto x = 0; x < 80; ++x) {
char c = x%10 + '0'; char c = x%10 + '0';
char color = x + y*80; char color = x + y*80;
set_char(x, y, 'F', 0x0f); set_char(x, y, ' ', 0x0f);
} }
} }
print("Hello world!\n"); print("Hello world!\n");
......
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