Discuss the development of new homebrew software, tools and libraries.
Moderators: cheriff , TyRaNiD
registered_guy
Posts: 2 Joined: Wed Apr 01, 2009 4:50 am
Post
by registered_guy » Wed Apr 01, 2009 4:58 am
Are any libraries/functions out there that I can use to pass a 32-bit data then return the equivalent MIPS Instruction?
For example:
I pass in something like 0x2464fc00
then it returns a const char* of "addiu $a0, $v1, 0xfc00"
Thanks.
Coldbird
Posts: 97 Joined: Thu Feb 08, 2007 7:22 am
Post
by Coldbird » Wed Apr 01, 2009 6:33 am
Check out the PRXTool sourcecode from the SVN repositories.
PRXTool features PSP Disassembling Code which you should be able to use in one way or another.
Been gone for some time. Now I'm back. Someone mind getting me up-2-date?
registered_guy
Posts: 2 Joined: Wed Apr 01, 2009 4:50 am
Post
by registered_guy » Wed Apr 01, 2009 12:10 pm
It is too much work to get it to co-operate with my code. I'll just make my own decoder. Thanks.