diff --git a/Makefile b/Makefile index ae3f277..1d7261d 100644 --- a/Makefile +++ b/Makefile @@ -7,16 +7,10 @@ # * MEM_SIZE= # Defines the memory size of the virtual machine (in bytes) # -# * M16_DEBUG_MEM -# Prints memory after program execution. -# -# * M16_DEBUG_REG -# Prints register values after program execution. -# # * M16_DEBUG_INSTR # Outputs the instructions executed in a human-readable format. # -# Example: make EXT_CFLAGS="-DM16_DEBUG_INSTR -DM16_DEBUG_MEM" +# Example: make EXT_CFLAGS="-DM16_DEBUG_INSTR -DMEM_SIZE=512" CC = gcc CFLAGS = -Ilib/include $(EXT_CFLAGS) LD = $(CC)