mirror of
https://github.com/CosmicScale/PSBBN-Definitive-English-Patch.git
synced 2025-03-10 10:17:51 +01:00
31 lines
925 B
TOML
31 lines
925 B
TOML
# Name of loaded config, to show to user
|
|
name = "UDPBD BDM driver"
|
|
|
|
# Drivers this driver depends on (config file must exist)
|
|
depends = ["i_bdm", "i_dev9_hidden"]
|
|
|
|
# Modules to load
|
|
[[module]]
|
|
file = "smap_udpbd.irx"
|
|
args = ["ip=192.168.1.10"]
|
|
env = ["LE", "EE"]
|
|
|
|
# Faking strategy
|
|
# ---------------
|
|
# To prevent games from trying to use networing:
|
|
# - we try to simulate that there is no dev9 hardware present:
|
|
# - dev9 returns NO_RESIDENT_END, module is hidden
|
|
# - all modules depending on dev9 fail to load becouse dev9 is not resident
|
|
[[fake]]
|
|
file = "ENT_SMAP.IRX"
|
|
name = "ent_smap"
|
|
version = 0x021f
|
|
loadrv = -200 # KE_LINKERR becouse dev9 does not exist
|
|
startrv = 1 # 0=RESIDENT_END, 1=NO_RESIDENT_END, 2=REMOVABLE_END
|
|
[[fake]]
|
|
file = "SMAP.IRX"
|
|
name = "INET_SMAP_driver"
|
|
version = 0x0219
|
|
loadrv = -200 # KE_LINKERR becouse dev9 does not exist
|
|
startrv = 1 # 0=RESIDENT_END, 1=NO_RESIDENT_END, 2=REMOVABLE_END
|