working build. (not run)

This commit is contained in:
ed
2026-08-06 19:04:14 -04:00
parent 8b3e6f5ef3
commit 030876da48
7 changed files with 158 additions and 144 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifdef INTELLISENSE_DIRECTIVES
# pragma once
# include "dsl.h"
# if _WIN32
# include "win32.h"
# endif
#endif
#pragma region Debug
#define debug_trap() __builtin_debugtrap()
#if BUILD_DEBUG
FI_ void assert(U8 cond);
#else
#define assert(cond)
#endif
#pragma endregion Debug