[Zion] Add an early debug method without allocations.

This commit is contained in:
Drew Galbraith 2023-11-05 08:48:41 -08:00
parent 85564b018d
commit 4af19d010f
3 changed files with 8 additions and 2 deletions

View file

@ -4,6 +4,10 @@
#include "include/ztypes.h"
// Debug line without formatting for
// before allocations are available.
void early_dbgln(const char* str);
void dbg(const char* fmt, ...);
void dbgln(const char* str, ...);
void panic(const char* str, ...);