08-15-2020, 05:26 PM
This is a code that changes the port used by the game to connect to other players.
NTSC-U:
C210DFD4 00000002
2C031964 41820008
3860XXXX 00000000
PAL:
C210E074 00000002
2C031964 41820008
3860XXXX 00000000
NTSC-J:
C210DF94 00000002
2C031964 41820008
3860XXXX 00000000
NTSC-K:
C210E0EC 00000002
2C031964 41820008
3860XXXX 00000000
XXXX should be the hex value of a 16-bit integer of the port you want to use. (except 6500)
Setting XXXX to 0000 will give you a random, unused port decided by the operating system.
(Please note that if using Dolphin on *nix based systems, you can not use any ports below 1024)
Source:
NTSC-U:
C210DFD4 00000002
2C031964 41820008
3860XXXX 00000000
PAL:
C210E074 00000002
2C031964 41820008
3860XXXX 00000000
NTSC-J:
C210DF94 00000002
2C031964 41820008
3860XXXX 00000000
NTSC-K:
C210E0EC 00000002
2C031964 41820008
3860XXXX 00000000
XXXX should be the hex value of a 16-bit integer of the port you want to use. (except 6500)
Setting XXXX to 0000 will give you a random, unused port decided by the operating system.
(Please note that if using Dolphin on *nix based systems, you can not use any ports below 1024)
Source:
Code:
.set DESIRED_PORT, 6969
cmpwi r3, 6500 # This port is not used for gameplay
beq exit
li r3, DESIRED_PORT
exit: