Reorganisation of KeStartXtSystem() routine and early debug printing

This commit is contained in:
2023-01-04 23:08:59 +01:00
förälder b7e5f1b5c1
incheckning 5730e8692e
4 ändrade filer med 30 tillägg och 24 borttagningar

Visa fil

@@ -13,10 +13,10 @@
/* XTOS platform debugging macros */
#ifdef DBG
#define DEBUG 1
#define LDRPRINT(Format, ...) if(LdrPrint) LdrPrint(Format, __VA_ARGS__);
#define LdrPrint(Format, ...) if(LdrDbgPrint) LdrDbgPrint(Format, __VA_ARGS__);
#else
#define DEBUG 0
#define LDRPRINT(Format, ...) ((VOID)NULL)
#define LdrPrint(Format, ...) ((VOID)NULL)
#endif
#endif /* __XTDK_XTDEBUG_H */