Reorganisation of KeStartXtSystem() routine and early debug printing
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2023-01-04 23:08:59 +01:00
parent b7e5f1b5c1
commit 5730e8692e
4 changed files with 30 additions and 24 deletions

View File

@@ -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 */