tojol Posted February 23, 2005 Share Posted February 23, 2005 Hi, i have compiled vsyncmame 0.61 (AC 97 drivers etc) but now i have a new problem. The 0.70 and above has a new memory_install_etc functions that do not appear in 0.69 and oldest. in more specific words check the next part of kof2003 (0.70 and above) driver DRIVER_INIT( kof2003 ){ kof2003_px_decrypt(); kof2003_sx_decrypt(); neogeo_fix_bank_type = 2; init_neogeo(); memory_install_read16_handler(0, ADDRESS_SPACE_PROGRAM, 0x2fe000, 0x2fffff, 0, 0, MRA16_RAM ); .... and now check the same part for kof2003 (0.61 ) driver DRIVER_INIT( kof2003 ){install_mem_read16_handler (0, 0x2fe000, 0x2fffff, kof2003_16_r);install_mem_write16_handler(0, 0x2fe000, 0x2fffff, kof2003_16_w); init_neogeo();} for mame0.61 the function memory_install...(mame0.70) are no declared in memory.h and memory.c (i think the first time that appear is in mame0.89) the most drivers posted in the forums has the new functions. Could any one tellme how to declare the new code in the old? so i can do that, could any share the 0.61 drivers? (mSlug5, SVC, etc) Thank you Link to comment Share on other sites More sharing options...
sync40 Posted February 24, 2005 Share Posted February 24, 2005 Hi again, well, replace "memory_install_xxxxx" with "install_mem_xxxxx." and only use four parametres "(0, 0xXXXXXX, 0xXXXXXX, final parameter). I did that to accomodate from.84 to.71 version, and I believe it is the same format for.61. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now