From ddc008dfface31a9143a81e0a4091ce17a34ac70 Mon Sep 17 00:00:00 2001 From: wrapper Date: Mon, 26 May 2025 17:13:01 +0700 Subject: [PATCH] DCC info update --- crt.s | 2 +- main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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];