mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-05 20:39:16 +00:00
APIC interrupts working
This commit is contained in:
@ -2,6 +2,9 @@
|
||||
|
||||
#include <uart.hpp>
|
||||
#include <printf.h>
|
||||
#include <lock.hpp>
|
||||
|
||||
NEWLOCK(DebuggerLock);
|
||||
|
||||
using namespace UniversalAsynchronousReceiverTransmitter;
|
||||
|
||||
@ -54,6 +57,7 @@ namespace SysDbg
|
||||
|
||||
void WriteLine(DebugLevel Level, const char *File, int Line, const char *Function, const char *Format, ...)
|
||||
{
|
||||
SMARTLOCK(DebuggerLock);
|
||||
WritePrefix(Level, File, Line, Function);
|
||||
va_list args;
|
||||
va_start(args, Format);
|
||||
|
Reference in New Issue
Block a user