1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:37:35 +00:00

Kernel/aarch64: Implement dbgput{str,char} in kprintf.cpp

Also changes the implementation of kernelearlyputstr to call
kernelputstr, to deduplicate some logic.
This commit is contained in:
Timon Kruiper 2022-12-22 11:04:44 +01:00 committed by Andrew Kaster
parent b991cff60f
commit ee883b839c
2 changed files with 16 additions and 24 deletions

View file

@ -50,22 +50,6 @@ bool g_pci_access_is_disabled_from_commandline { false };
}
// kprintf.cpp
void dbgputstr(StringView)
{
TODO_AARCH64();
}
void dbgputstr(char const*, size_t)
{
TODO_AARCH64();
}
void dbgputchar(char)
{
TODO_AARCH64();
}
// x86 init
multiboot_module_entry_t multiboot_copy_boot_modules_array[16];