Skip to content

Commit

Permalink
Use fastloading and add new BIOSes
Browse files Browse the repository at this point in the history
  • Loading branch information
socram8888 committed Apr 15, 2021
1 parent 66c199f commit 1deb0d7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "freepsxboot/FreePSXBoot"]
path = freepsxboot/FreePSXBoot
url = https://github.com/socram8888/FreePSXBoot
url = https://github.com/brad-lin/FreePSXBoot
2 changes: 1 addition & 1 deletion freepsxboot/FreePSXBoot
Submodule FreePSXBoot updated 48 files
+34 −32 README.md
+6 −1 builder/Makefile
+44 −0 builder/bin2c.c
+97 −42 builder/builder.cc
+93 −0 builder/stage2-bin.h
+11 −0 builder/stage2/Makefile
+94 −0 builder/stage2/common.mk
+50 −0 builder/stage2/common/crt0/crt0.s
+73 −0 builder/stage2/common/hardware/cdrom.h
+37 −0 builder/stage2/common/hardware/cop0.h
+46 −0 builder/stage2/common/hardware/dma.h
+198 −0 builder/stage2/common/hardware/gpu.h
+82 −0 builder/stage2/common/hardware/hwregs.h
+41 −0 builder/stage2/common/hardware/hwregs.inc
+43 −0 builder/stage2/common/hardware/irq.h
+36 −0 builder/stage2/common/hardware/pcsxhw.h
+49 −0 builder/stage2/common/hardware/sio1.c
+39 −0 builder/stage2/common/hardware/sio1.h
+73 −0 builder/stage2/common/hardware/spu.h
+29 −0 builder/stage2/common/hardware/util.h
+55 −0 builder/stage2/common/kernel/events.h
+58 −0 builder/stage2/common/kernel/openbios.h
+41 −0 builder/stage2/common/psxlibc/circularbuffer.h
+79 −0 builder/stage2/common/psxlibc/device.h
+40 −0 builder/stage2/common/psxlibc/direntry.h
+174 −0 builder/stage2/common/psxlibc/fastmemset.s
+43 −0 builder/stage2/common/psxlibc/handlers.h
+48 −0 builder/stage2/common/psxlibc/ioctl.h
+48 −0 builder/stage2/common/psxlibc/psxexe.h
+33 −0 builder/stage2/common/psxlibc/setjmp.h
+101 −0 builder/stage2/common/psxlibc/stdio.h
+41 −0 builder/stage2/common/psxlibc/string.h
+37 −0 builder/stage2/common/syscalls/printf.s
+553 −0 builder/stage2/common/syscalls/syscalls.h
+35 −0 builder/stage2/common/util/djbhash.h
+0 −0 builder/stage2/common/util/encoder.hh
+44 −0 builder/stage2/common/util/util.h
+23 −0 builder/stage2/dockermake.bat
+10 −0 builder/stage2/dockermake.sh
+194 −0 builder/stage2/ps-exe.ld
+259 −0 builder/stage2/stage2.c
+107 −0 builder/stage2/stage2.ld
+ images/freepsxboot-unirom-fastload-20210414-101.mcd
+ images/freepsxboot-unirom-fastload-20210414-102_4.4.mcd
+ images/freepsxboot-unirom-fastload-20210414-102_4.5.mcd
+ images/freepsxboot-unirom-fastload-20210414-5001-5501-5503-7003.mcd
+ images/freepsxboot-unirom-fastload-20210414-5502-5552.mcd
+ images/freepsxboot-unirom-fastload-20210414-7001-7002-7500-7501-7502-7503-9001-9002-9003.mcd
2 changes: 1 addition & 1 deletion freepsxboot/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ clean:
$(RM) $(FREEPSXBOOT_IMAGES) FreePSXBoot/builder/builder

tonyhax_%.mcd: ../loader/tonyhax.exe FreePSXBoot/builder/builder
FreePSXBoot/builder/builder -bw -bios $(patsubst tonyhax_bios_v%.mcd,%,$@) -in ../loader/tonyhax.exe -out $@
FreePSXBoot/builder/builder -fastload -bios $(patsubst tonyhax_bios_v%.mcd,%,$@) -in ../loader/tonyhax.exe -out $@

FreePSXBoot/builder/builder:
make -C FreePSXBoot/builder all
2 changes: 1 addition & 1 deletion variables.mk
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ LOADER_FILES := tonyhax.mcs BESLEM-99999TONYHAX tonyhax.exe

# FreePSXBoot images

FREEPSXBOOT_BIOS = v3.0 v4.1 v4.4 v4.5
FREEPSXBOOT_BIOS = v2.0 v2.1 v2.2 v3.0 v4.1 v4.4 v4.5
FREEPSXBOOT_IMAGES := $(patsubst %,tonyhax_bios_%.mcd,$(FREEPSXBOOT_BIOS))

0 comments on commit 1deb0d7

Please sign in to comment.