From 547e60352ddc767bf461f957e0dc0dff8bec4d6f Mon Sep 17 00:00:00 2001 From: Greg Haerr Date: Mon, 16 Dec 2024 17:46:35 -0700 Subject: [PATCH] Turn off VERBOSE=1 in default malloc, add back in disasm in 1440k image --- elkscmd/Applications | 2 +- libc/malloc/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/elkscmd/Applications b/elkscmd/Applications index f2faf89d0..3e62b5d73 100644 --- a/elkscmd/Applications +++ b/elkscmd/Applications @@ -213,7 +213,7 @@ nano-X/bin/nxworld.map ::lib/nxworld.map :nanox :1232c :1440k basic/basic :basic :1200k advent/advent :other :1440c advent/advent.db ::lib/advent.db :other :1440c -debug/disasm :other +debug/disasm :other :1440k debug/nm86 :other :1440c debug/system.sym ::lib/system.sym :other :1440c debug/testsym :other :1440c diff --git a/libc/malloc/Makefile b/libc/malloc/Makefile index 6901f2131..0414d5a66 100644 --- a/libc/malloc/Makefile +++ b/libc/malloc/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/libc/$(COMPILER).inc # allocations smaller than MCHUNK words (not bytes) are rounded up, # larger requests are allocated from heap as is. CFLAGS += -DMCHUNK=16 -CFLAGS += -DVERBOSE=1 +#CFLAGS += -DVERBOSE=1 #CFLAGS += -DMINALLOC #CFLAGS += -DLAZY_FREE #CFLAGS += -DL_alloca