Hi all
loadcepc.exe will fill bootargs structure. Then eboot.bin or nk.bin can
use the information in this structure.
In OAL there is code:
#define BOOT_ARG_PTR_LOCATION 0x801FFFFC
InitBootInfo ((BOOT_ARGS *) ((ULONG)(*(PBYTE *)BOOT_ARG_PTR_LOCATION) |
0x80000000));
In eboot there is similar:
#define BOOT_ARG_PTR_LOCATION_NP 0x001FFFFC
pBootArgs = (BOOT_ARGS *) ((ULONG)(*(PBYTE *)BOOT_ARG_PTR_LOCATION_NP));
But in loadcepc.exe I can't find such code. How does loadcepc.exe know the
specific address of bootargs? Can gurus help me please. Thanks