wip: rusty with the build scripts

This commit is contained in:
ed
2026-08-06 17:08:56 -04:00
parent ce3206393a
commit 8b3e6f5ef3
11 changed files with 133 additions and 9 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifdef INTELLISENSE_DIRECTIVES
# pragma once
# include "dsl.h"
#endif
#pragma region Encoding
FI_ void u64_to_hex(U8 val, char* buf, S4 chars) {
static const char hex_chars[] = "0123456789ABCDEF";
for(S1 i = chars - 1; i >= 0; --i) { buf[i] = hex_chars[val & 0xF]; val >>= 4; }
}
#pragma endregion Encoding