DCC info update

This commit is contained in:
wrapper 2025-05-26 17:13:01 +07:00
parent 17d831de9b
commit ddc008dffa
2 changed files with 2 additions and 2 deletions

2
crt.s
View file

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

2
main.c
View file

@ -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];