[Teton] Print out every character into the framebuffer as a test.
This commit is contained in:
parent
afdb024c36
commit
2df1f6c006
3 changed files with 25 additions and 3 deletions
|
|
@ -41,7 +41,10 @@ uint64_t main(uint64_t init_port) {
|
|||
psf.DumpHeader();
|
||||
|
||||
Console console(fbuf, psf);
|
||||
console.WriteString("Hello World!");
|
||||
console.WriteString("Hello World!\n");
|
||||
for (uint8_t i = 0x20; i < 0x7E; i++) {
|
||||
console.WriteChar(i);
|
||||
}
|
||||
|
||||
// 3. Write a line to the screen.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue