File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ SUBDIRS = \
1010 alloc \
1111 boardinf \
1212 dmacman \
13+ dummymod \
1314 eeconf \
1415 eesync \
1516 eesync-nano \
Original file line number Diff line number Diff line change 1+ # _____ ___ ____ ___ ____
2+ # ____| | ____| | | |____|
3+ # | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
4+ # -----------------------------------------------------------------------
5+ # Copyright ps2dev - http://www.ps2dev.org
6+ # Licenced under Academic Free License version 2.0
7+ # Review ps2sdk README & LICENSE files for further details.
8+
9+ IOP_IMPORT_INCS += \
10+ system/loadcore
11+
12+ IOP_OBJS = \
13+ dummymod.o
14+
15+ include $(PS2SDKSRC ) /Defs.make
16+ include $(PS2SDKSRC ) /iop/Rules.bin.make
17+ include $(PS2SDKSRC ) /iop/Rules.make
18+ include $(PS2SDKSRC ) /iop/Rules.release
Original file line number Diff line number Diff line change 1+ # Dummy IOP Module
2+
3+ This module is a minimal module intended to be used where a module is used but
4+ a no-op is desired, such as a module in an IOPRP image.
5+
6+ ## Configurations
7+
8+ There are multiple configurations of this library, allowing the choice of
9+ balancing between size, speed, and features.
10+
11+ * ` dummymod ` -> The recommended version.
12+
13+ ## How to use this module in your program
14+
15+ In order to use this module in your program, use ` LoadModule ` or \
16+ ` LoadModuleBuffer ` with no arguments.
Original file line number Diff line number Diff line change 1+ /*
2+ # _____ ___ ____ ___ ____
3+ # ____| | ____| | | |____|
4+ # | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
5+ #-----------------------------------------------------------------------
6+ # Copyright ps2dev - http://www.ps2dev.org
7+ # Licenced under Academic Free License version 2.0
8+ # Review ps2sdk README & LICENSE files for further details.
9+ */
10+
11+ #include <loadcore.h>
12+
13+ int _start (int ac , char * * av )
14+ {
15+ (void )ac ;
16+ (void )av ;
17+
18+ return MODULE_NO_RESIDENT_END ;
19+ }
You can’t perform that action at this time.
0 commit comments