Skip to content

Commit

Permalink
Merge pull request #656 from uyjulian/eromdrv
Browse files Browse the repository at this point in the history
Eromdrv module
  • Loading branch information
fjtrujy authored Oct 8, 2024
2 parents dbb7fa1 + c5beaaf commit 9e35762
Show file tree
Hide file tree
Showing 6 changed files with 465 additions and 0 deletions.
1 change: 1 addition & 0 deletions iop/fs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ SUBDIRS = \
bdmfs_fatfs \
bdmfs_vfat \
devfs \
eromdrv \
fakehost \
fileio \
filexio \
Expand Down
14 changes: 14 additions & 0 deletions iop/fs/eromdrv/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# _____ ___ ____ ___ ____
# ____| | ____| | | |____|
# | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
#-----------------------------------------------------------------------
# Copyright ps2dev - http://www.ps2dev.org
# Licenced under Academic Free License version 2.0
# Review ps2sdk README & LICENSE files for further details.

IOP_OBJS = eromdrv.o imports.o

include $(PS2SDKSRC)/Defs.make
include $(PS2SDKSRC)/iop/Rules.bin.make
include $(PS2SDKSRC)/iop/Rules.make
include $(PS2SDKSRC)/iop/Rules.release
16 changes: 16 additions & 0 deletions iop/fs/eromdrv/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Encrypted ROM driver

IOP module for handling the encrypted filesystem contained in the ROM
chip attached to DEV1.

## Configurations

There are multiple configurations of this library, allowing the choice of
balancing between size, speed, and features.

* `eromdrv` -> The recommended version.

## How to use this module in your program

In order to use this module in your program, use `LoadModule` or \
`LoadModuleBuffer` with no arguments.
Loading

0 comments on commit 9e35762

Please sign in to comment.