diff --git a/crt.s b/crt.s index acb4a79..13c7741 100644 --- a/crt.s +++ b/crt.s @@ -68,7 +68,7 @@ DCC_PKT_HW_BP: .word DN_Packet_DCC_WaitForBP .word __heap_size .word __stack_end -.asciz "A:DumpNow DCC Loader. (c) 2025 Wrapper. Compile flags: " ADEFS +.asciz "A:DumpNow DCC Loader. (c) 2025 Wrapper.;Compile flags: " ADEFS ";Compile Date: " __DATE__ .align /* LWMEM info */ diff --git a/main.c b/main.c index f95c37f..077a226 100644 --- a/main.c +++ b/main.c @@ -6,7 +6,7 @@ typedef DCC_RETURN DCC_INIT_PTR(DCCMemory *mem, uint32_t offset); typedef DCC_RETURN DCC_READ_PTR(DCCMemory *mem, uint32_t offset, uint32_t size, uint8_t *dest, uint32_t *dest_size); #ifdef CDEFS -const char *CFLAGS = "C:DumpNow DCC Loader. (c) 2025 Wrapper. Compile flags: " CDEFS; +const char *CFLAGS = "C:DumpNow DCC Loader. (c) 2025 Wrapper.;Compile flags: " CDEFS ";Compile Date: " __DATE__; #endif static uint8_t rawBuf[DCC_BUFFER_SIZE + 0x2000];