Been playing around with IRX files and how they use
jr ra
li $0000002e
to import functions from a list and was wondering if there was a way to view the actual function that 2e for example refers to. Note that I'm am refering to a IRX that has already been built.
IRX: module list
Besides the library entry, you need to know what specific IOP module(s) the irx is calling. For example SIO2MAN, SYSCLIB etc.
Once you know the IOP module and library entry, just look in /ps2sdk/iop/kernel/src/*.s and you will find out the information you're looking for.
I am not sure if this is what you're asking but I'll throw it anyhow.
Once you know the IOP module and library entry, just look in /ps2sdk/iop/kernel/src/*.s and you will find out the information you're looking for.
I am not sure if this is what you're asking but I'll throw it anyhow.
Thnx but yea thats the problem, what if it doesn't list the modules it calls. And I don't have kernel/src/* in my ps2dev for some reason. Also how can I find out the library entry.carlosn wrote:Besides the library entry, you need to know what specific IOP module(s) the irx is calling. For example SIO2MAN, SYSCLIB etc.
Once you know the IOP module and library entry, just look in /ps2sdk/iop/kernel/src/*.s and you will find out the information you're looking for.
I am not sure if this is what you're asking but I'll throw it anyhow.