diff --git a/Makefile b/Makefile index 62f57da..388df24 100644 --- a/Makefile +++ b/Makefile @@ -117,7 +117,7 @@ export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) .PHONY: common clean all gateway firm binary cakehax cakerop brahma release #--------------------------------------------------------------------------------- -all: binary +all: firm common: @[ -d $(OUTPUT_D) ] || mkdir -p $(OUTPUT_D) diff --git a/source/common.h b/source/common.h index 25857a8..2f71139 100644 --- a/source/common.h +++ b/source/common.h @@ -37,9 +37,6 @@ #define align(v,a) \ (((v) % (a)) ? ((v) + (a) - ((v) % (a))) : (v)) -#define ENTRY_BRAHMA (1) -#define ENTRY_GATEWAY (2) - // standard work area, size must be a multiple of 0x200 (512) #define BUFFER_ADDRESS ((u8*) 0x21000000) #define BUFFER_MAX_SIZE ((u32) (1 * 1024 * 1024))