Yes, but what is the difference between those binaries?
Since 0.8.2 ScummVM runs in usermode by default, so the 1.00 EBOOT should run on 2.00+ via a loader and there should no longer be a need to build a seperate '2.00' version.
Your 1.00 and 2.00 versions seem to differ, so I want to know what you changed (and why).
//#define USERSPACE_ONLY
/**
* Define the module info section
*
* 2nd arg must 0x1000 so __init is executed in
* kernelmode for our loaderInit function
*/
#ifndef USERSPACE_ONLY
PSP_MODULE_INFO("SCUMMVM-PSP", 0x1000, 1, 1);
#else
PSP_MODULE_INFO("SCUMMVM-PSP", 0, 1, 1);
#endif
Well, USERSPACE_ONLY is defined by default in SVN now, since I've never received a valueable bug-report with info from the exception handler anyway and it makes it easier for the end-users (they can use any version, the only difference is the 1.00 vs. 1.50 EBOOT packaging).