Implement KD subsystem, add serial & framebuffer debug providers

このコミットが含まれているのは:
2025-09-04 10:49:40 +02:00
コミット c2a4ad026a
16個のファイルの変更530行の追加13行の削除

ファイルの表示

@@ -20,7 +20,7 @@
/* XTOS platform debugging macros */
#ifdef DBG
#define DEBUG 1
#define DebugPrint(Format, ...) if(KeDbgPrint) KeDbgPrint(Format, __VA_ARGS__);
#define DebugPrint(Format, ...) if(KdPrint) KdPrint(Format, __VA_ARGS__);
#else
#define DEBUG 0
#define DebugPrint(Format, ...) ((VOID)NULL)