Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
israpps committed Apr 5, 2024
1 parent 2794dbe commit 1bf2b27
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,15 @@ endif

ifeq ($(COH), 1)
CDVDFSV = 0
SIO2MAN = 1
MCMAN = 1
SIO2MAN = 0
MCMAN = 0
EE_OBJS += ioprp.o
EE_LIBS += -liopreboot
LIBPAD = 2
HAS_COH = -COH
EE_CFLAGS += -DSUPPORT_SYSTEM_2X6
HOMEBREW_DONGLEMAN = 1
EE_OBJS += mcman_irx.o
endif

ifeq ($(XFROM),1)
Expand Down
Binary file modified iop/__precompiled/dongleman.irx
Binary file not shown.
7 changes: 3 additions & 4 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1160,10 +1160,9 @@ static void loadBasicModules(void)
#endif

#ifdef USE_ROM_MCMAN
#ifdef SYSTEM_2X6_ACCESS_PS2_CARD
#warning mc0 (security dongles) will not be accesible
id = SifLoadStartModule("rom0:MCMANO", 0, NULL, &ret);
DPRINTF(" [rom0:MCMANO]: id=%d, ret=%d\n", id, ret);
#ifdef SUPPORT_SYSTEM_2X6
id = SifExecModuleBuffer(mcman_irx, size_mcman_irx, 0, NULL, &ret); //Home
DPRINTF(" [DONGLEMAN]: id=%d, ret=%d\n", id, ret);
#else //SECURITY DONGLE
id = SifLoadStartModule("rom0:MCMAN", 0, NULL, &ret);
DPRINTF(" [rom0:MCMAN]: id=%d, ret=%d\n", id, ret);
Expand Down

0 comments on commit 1bf2b27

Please sign in to comment.