diff --git a/.gitignore b/.gitignore index f708fb8..2391e59 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ /obj /Sound4Calc.sublime-workspace +/*.bin +/*.elf +/*.g1a diff --git a/Makefile b/Makefile index 38ca915..0e49f0a 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ $(NAME).elf: $(OBJDIR) $(ALLOBJ) ## Make the BIN file $(NAME).bin: $(NAME).elf - $(OBJCOPY) -R .comment -R .bss -R '$$iop' -O binary $< $@ + $(OBJCPY) -R .comment -R .bss -R '$$iop' -O binary $< $@ ## Make the G1A file $(NAME).g1a: $(NAME).bin diff --git a/Makefile.cfg b/Makefile.cfg index a32bff7..ccbff85 100644 --- a/Makefile.cfg +++ b/Makefile.cfg @@ -22,8 +22,8 @@ AS = sh3eb-elf-as CC = sh3eb-elf-gcc CFLAGS = -m3 -mb -Os -nostdlib -Wall -Wextra -Wno-main -pedantic -std=c11 -I $(INCDIR) ## Linker -LD = sh3eb-elf-ld -LFLAGS = -T $(SCPTDIR)/addin.ld -L $(LIBDIR) $(addprefix -l,$(LIB)) +LD = sh3eb-elf-gcc +LFLAGS = -nostdlib -T $(SCPTDIR)/addin.ld -L $(LIBDIR) $(addprefix -l,$(LIB)) ## Object copier OBJCPY = sh3eb-elf-objcopy ## G1A Wrapper diff --git a/misc/logo/32x32.png b/misc/logo/32x32.png new file mode 100644 index 0000000..31f676f Binary files /dev/null and b/misc/logo/32x32.png differ diff --git a/misc/logo/512x512.png b/misc/logo/512x512.png new file mode 100644 index 0000000..1d249dd Binary files /dev/null and b/misc/logo/512x512.png differ