mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-13 00:49:55 +00:00
Tweak _test.o to use the putch() syscall.
It's still running in kernel space. Once I make it possible for ELFLoader to set up a ring 3 task, we'll really be cooking!
This commit is contained in:
@@ -52,4 +52,9 @@ void yield()
|
||||
DO_SYSCALL_A0(Syscall::Yield);
|
||||
}
|
||||
|
||||
void putch(char ch)
|
||||
{
|
||||
DO_SYSCALL_A1(Syscall::PutCharacter, ch);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user