1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 02:37:42 +00:00

Kernel+LibC: Add a dbgputstr() syscall for sending strings to debug output.

This is very handy for the DebugLogStream implementation, among others. :^)
This commit is contained in:
Andreas Kling 2019-07-21 21:43:37 +02:00
parent 0ef13e60b0
commit af81645a2a
10 changed files with 33 additions and 4 deletions

View file

@ -57,12 +57,18 @@ int ksprintf(char* buffer, const char* fmt, ...)
return ret;
}
extern "C" int dbgputstr(const char* characters, int length)
{
for (int i = 0; i < length; ++i)
IO::out8(0xe9, characters[i]);
return 0;
}
static void debugger_putch(char*&, char ch)
{
IO::out8(0xe9, ch);
}
extern "C" int dbgprintf(const char* fmt, ...)
{
color_on();