aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2023-08-28 14:02:59 +0200
committerBad Diode <bd@badd10de.dev>2023-08-28 14:02:59 +0200
commitba6ed32d1732218f152daae2356f8b0281f5f7b8 (patch)
tree096c1c0ce87ad35c7f8a30eb6076a5ed02c75890 /Makefile
parentee7f1d32a4ded99745a5886eb9839157d5e6ea57 (diff)
downloaduxngba-ba6ed32d1732218f152daae2356f8b0281f5f7b8.tar.gz
uxngba-ba6ed32d1732218f152daae2356f8b0281f5f7b8.zip
Add swp, rot, dup, ovr instructions
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 100c861..c7a3af6 100644
--- a/Makefile
+++ b/Makefile
@@ -38,7 +38,7 @@ OBJCOPY := $(DEVKITBIN)/arm-none-eabi-objcopy
38ARCH := -mthumb -mthumb-interwork 38ARCH := -mthumb -mthumb-interwork
39SPECS := -specs=gba.specs 39SPECS := -specs=gba.specs
40CONFIG := 40CONFIG :=
41CFLAGS := -Wall -Wextra -pedantic -Wno-incompatible-pointer-types 41CFLAGS := -Wall -Wextra -pedantic -Wno-incompatible-pointer-types -Wno-unused-variable -Wno-unused-function -Wno-unused-parameter
42CFLAGS += -fno-strict-aliasing 42CFLAGS += -fno-strict-aliasing
43CFLAGS += -mcpu=arm7tdmi -mtune=arm7tdmi $(ARCH) 43CFLAGS += -mcpu=arm7tdmi -mtune=arm7tdmi $(ARCH)
44CFLAGS += $(INC_FLAGS) 44CFLAGS += $(INC_FLAGS)