Skip to content

Commit

Permalink
20190410 (0.6.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
cetygamer committed Jan 13, 2022
1 parent 39822f9 commit 831f9b9
Show file tree
Hide file tree
Showing 41 changed files with 2,348 additions and 1,365 deletions.
7 changes: 7 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2019-04-10 (0.6.2):
- Included GTE library by LameGuy64/Meido-Tek as 'libmeidogte'
- New example: gtecube. Demonstrates libmeidogte
- The 'rottest' and 'puzzle' examples always set a PAL video mode regardless of the setting in Makefile.cfg
Fixed.
- Removed unused macro code from spasm

2018-01-15 (0.6.1) :
- Fixed bug where LO and HI registers were not saved and restored by the NoBIOS exception handler
- Some definitions (like the ones for the interrupt controller and the GPU) moved out of
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ build:
$(HOST_SHELL) -c "export PATH=\"$$PATH\":$(TOOLCHAIN_PREFIX)/bin;$(MAKE_COMMAND) -C libmodplay SRCROOT=$(PWD)"
$(HOST_SHELL) -c "export PATH=\"$$PATH\":$(TOOLCHAIN_PREFIX)/bin;$(MAKE_COMMAND) -C libfixmath SRCROOT=$(PWD)"
$(HOST_SHELL) -c "export PATH=\"$$PATH\":$(TOOLCHAIN_PREFIX)/bin;$(MAKE_COMMAND) -C libf3m SRCROOT=$(PWD)"
$(HOST_SHELL) -c "export PATH=\"$$PATH\":$(TOOLCHAIN_PREFIX)/bin;$(MAKE_COMMAND) -C libmeidogte SRCROOT=$(PWD)"
$(BUILD_CXX)
$(MAKE_COMMAND) -C tools

Expand All @@ -29,6 +30,7 @@ install: build
$(MAKE_COMMAND) -C libmodplay install
$(MAKE_COMMAND) -C libfixmath install
$(MAKE_COMMAND) -C libf3m install
$(MAKE_COMMAND) -C libmeidogte install
$(MAKE_COMMAND) -C tools install
$(MAKE_COMMAND) -C licenses install
$(INSTALL_CXX)
Expand All @@ -41,6 +43,7 @@ clean: docs_clean
$(MAKE_COMMAND) -C libmodplay clean
$(MAKE_COMMAND) -C libfixmath clean
$(MAKE_COMMAND) -C libf3m clean
$(MAKE_COMMAND) -C libmeidogte clean
$(MAKE_COMMAND) -C misc clean
$(MAKE_COMMAND) -C tools clean
$(MAKE_COMMAND) -C examples clean
Expand All @@ -54,6 +57,7 @@ distclean: docs_clean
$(MAKE_COMMAND) -C libmodplay clean
$(MAKE_COMMAND) -C libfixmath clean
$(MAKE_COMMAND) -C libf3m clean
$(MAKE_COMMAND) -C libmeidogte clean
$(MAKE_COMMAND) -C misc distclean
$(MAKE_COMMAND) -C tools distclean
$(MAKE_COMMAND) -C examples distclean
Expand Down
4 changes: 3 additions & 1 deletion Makefile.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ EXE_SUFFIX =
CC = mipsel-unknown-elf-gcc
CXX = mipsel-unknown-elf-g++
# CFLAGS and CXXFLAGS - do not change if you do not know what you are doing!!!
CFLAGS = -D__PSXSDK__ -fsigned-char -fno-strict-overflow -I$(SRCROOT)/libpsx/include/ -G0 -fno-builtin -mno-gpopt -nostdlib -msoft-float -Wall -Werror
INCLUDEDIR = $(SRCROOT)/libpsx/include/
AFLAGS = -I $(INCLUDEDIR) -G0 -msoft-float
CFLAGS = -D__PSXSDK__ -fsigned-char -fno-strict-overflow -I$(INCLUDEDIR) -G0 -fno-builtin -mno-gpopt -nostdlib -msoft-float -Wall -Werror
CXXFLAGS = $(CFLAGS) -fno-rtti -fno-exceptions -fno-threadsafe-statics -fno-use-cxa-atexit
AR = mipsel-unknown-elf-ar
RANLIB = mipsel-unknown-elf-ranlib
Expand Down
2 changes: 1 addition & 1 deletion doxygen.conf
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.

INPUT = libpsx libmodplay cxx libadpcm libf3m libfixmath libhuff libm
INPUT = libpsx libmodplay cxx libadpcm libf3m libfixmath libhuff libm libmeidogte

# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
Expand Down
4 changes: 3 additions & 1 deletion examples/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ all:
$(MAKE_COMMAND) -C puzzle
$(MAKE_COMMAND) -C rottest
$(MAKE_COMMAND) -C psxs3m
$(MAKE_COMMAND) -C gtecube

clean:
$(MAKE_COMMAND) -C mandel clean
Expand All @@ -18,6 +19,7 @@ clean:
$(MAKE_COMMAND) -C psxsnake clean
$(MAKE_COMMAND) -C puzzle clean
$(MAKE_COMMAND) -C rottest clean
$(MAKE_COMMAND) -C psxs3m clean
$(MAKE_COMMAND) -C psxs3m clean
$(MAKE_COMMAND) -C gtecube clean

distclean: clean
8 changes: 8 additions & 0 deletions examples/gtecube/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
PROJNAME = gtecube
PROJ_LIBS = -lmeidogte

include ../project.mk

$(PROJNAME)_extra:

$(PROJNAME)_clean_extra:
Loading

0 comments on commit 831f9b9

Please sign in to comment.