Makefile for clearer disassembly and a sections target

This commit is contained in:
Imbus 2024-04-06 21:20:29 +02:00
parent 86754df83b
commit 1e041aadfb

View file

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