Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOfficialFloW committed Sep 12, 2020
0 parents commit 0ba6ac8
Show file tree
Hide file tree
Showing 7 changed files with 1,525 additions and 0 deletions.
370 changes: 370 additions & 0 deletions LICENSE.TXT

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
TARGET = ge_patch
OBJS = main.o gu.o exports.o

CFLAGS = -O2 -Os -G0 -Wall -fshort-wchar -fno-pic -mno-check-zero-division
CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti
ASFLAGS = $(CFLAGS)

BUILD_PRX = 1
PRX_EXPORTS = exports.exp

USE_KERNEL_LIBC = 1
USE_KERNEL_LIBS = 1

LIBS = -lpspsystemctrl_kernel

PSPSDK = $(shell psp-config --pspsdk-path)
include $(PSPSDK)/lib/build_prx.mak
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# GE Patch Plugin

This is an experimental plugin for [Adrenaline](https://github.com/TheOfficialFloW/Adrenaline) that allows you to play a few games in native resolution.

## Compatibility List

Please help testing games and filling out the [spreadsheet](https://docs.google.com/spreadsheets/d/1aZlmKwELcdpCb9ezI5iRfgcX9hoGxgL4tNC-673aKqk/edit#gid=0).

## Installation

- Download [ge_patch.prx](https://github.com/TheOfficialFloW/GePatch/releases/download/v0.1/ge_patch.prx).

- Copy it to `ux0:pspemu/seplugins/`.

- Write this line to `ux0:pspemu/seplugins/game.txt`:

```
ms0:/seplugins/ge_patch.prx 1
```

## Known Issues

Some games may:

- Not display cutscenes.
- Have wrong color format / line width.
8 changes: 8 additions & 0 deletions exports.exp
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
PSP_BEGIN_EXPORTS

PSP_EXPORT_START(syslib, 0, 0x8000)
PSP_EXPORT_FUNC(module_start)
PSP_EXPORT_VAR(module_info)
PSP_EXPORT_END

PSP_END_EXPORTS
Loading

0 comments on commit 0ba6ac8

Please sign in to comment.