From 1e041aadfbddb936a029e4cf9d42fd834c10ebf8 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Sat, 6 Apr 2024 21:20:29 +0200 Subject: [PATCH] Makefile for clearer disassembly and a sections target --- makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 105c032..9d21460 100644 --- a/makefile +++ b/makefile @@ -67,7 +67,10 @@ run: all # View the text section of the binary inspect: all - $(OBJDUMP) -d $(TARGET) + $(OBJDUMP) -dC $(TARGET) + +sections: all + $(OBJDUMP) -h $(TARGET) # View the disassembly raw: all