brotherlee Posted February 24, 2006 Posted February 24, 2006 Does anybody else have a an issue with the universe bios not loading when "auto universe bios" is set to on? Thanks.
+ T + Posted February 24, 2006 Author Posted February 24, 2006 Does anybody else have a an issue with the universe bios not loading when "auto universe bios" is set to on? Thanks.Dammit. I was playing around with that code and I guess I forgot to put it back for the release build. Apologies for that. I may just throw out a v1.09a to correct this issue since I've pretty much run out of other things to update for the time being and so I've no idea when the next release will be.
brotherlee Posted February 24, 2006 Posted February 24, 2006 Does anybody else have a an issue with the universe bios not loading when "auto universe bios" is set to on? Thanks.<{POST_SNAPBACK}>Dammit. I was playing around with that code and I guess I forgot to put it back for the release build. Apologies for that. I may just throw out a v1.09a to correct this issue since I've pretty much run out of other things to update for the time being and so I've no idea when the next release will be.<{POST_SNAPBACK}> Thanks. I do rather enjoy the features offered by the universe bios.
lawnspic Posted February 24, 2006 Posted February 24, 2006 +T+ i assume you are talking about kf02m-P2, the rom originally used?
+ T + Posted February 25, 2006 Author Posted February 25, 2006 Thanks. I do rather enjoy the features offered by the universe bios.In the meantime you can always select the uni-bios in the dipswitches. +T+ i assume you are talking about kf02m-P2, the rom originally used?Yes, that's the previous one that was incorrect for kf2k2mp2.
mrskitz Posted February 25, 2006 Posted February 25, 2006 great... i'll try that when i get home. <{POST_SNAPBACK}> im new to the thread and slighly old to the mod scene can any one help me find the files on #xbins i have tried but always seem to get the same files.. i would like to know how to get dvd 7.4 as well any help would be gladly appreciated
Prican25 Posted February 25, 2006 Posted February 25, 2006 when you get into xbins, go to xbox, apps, emulators, arcade, fba-xxx, and theres a folder to get fba-xxx pro. i'm guessing you meant dvd2xbox 7.4 and thats in xbox, apps, file managers
twen Posted February 26, 2006 Posted February 26, 2006 Is it possible to make Diagnostics/Service Mode shortcuts mappable? Whenever I access the diagnostics mode using the shortcut in a NeoGeo game, it usually brings me to the Hardware Test immediately, and I can't get out of it without resetting the ROM.
+ T + Posted February 26, 2006 Author Posted February 26, 2006 Is it possible to make Diagnostics/Service Mode shortcuts mappable? Whenever I access the diagnostics mode using the shortcut in a NeoGeo game, it usually brings me to the Hardware Test immediately, and I can't get out of it without resetting the ROM.Why would re-mapping the shortcut make a difference to that?
twen Posted February 27, 2006 Posted February 27, 2006 Is it possible to make Diagnostics/Service Mode shortcuts mappable? Whenever I access the diagnostics mode using the shortcut in a NeoGeo game, it usually brings me to the Hardware Test immediately, and I can't get out of it without resetting the ROM.<{POST_SNAPBACK}>Why would re-mapping the shortcut make a difference to that?<{POST_SNAPBACK}> The white (or black, doesn't make a difference) button triggers multiple buttons including A, which basically presses A an extra time after the mode is opened, kicking it immediately into the Hardware Test.)
FerchogtX Posted February 27, 2006 Posted February 27, 2006 Hey!! looks pretty good this FBA, congratulations for this work man. Maybe some bootlegs will change as I got CRC's of the real ms5boot 68K ROMs and text ROM as well as real encrypted p1 for ms4plus, I will finish some details and then post the info. Keep the good work.See ya!!!!
+ T + Posted February 27, 2006 Author Posted February 27, 2006 (edited) Maybe some bootlegs will change as I got CRC's of the real ms5boot 68K ROMs and text ROM as well as real encrypted p1 for ms4plus, I will finish some details and then post the info.That would be awesome. Thanks FerchogtX. It's great to see you here. I'm already implementing some of the changes you posted over at the RS forum. If possible could you please post the descrambling code for the new ms4plus P1? Thanks. Edited February 27, 2006 by + T +
iq_132 Posted February 27, 2006 Posted February 27, 2006 static void ms4plus_descramble() { unsigned int sec[16]={ 0x08, 0x06, 0x04, 0x0c, 0x0a, 0x01, 0x0e, 0x02, 0x0d, 0x05, 0x09, 0x0f, 0x0b, 0x03, 0x07, 0x00 }; unsigned char *dst = (unsigned char*)malloc(0x100000); if (dst) { memcpy(dst, Neo68KROM, 0x100000); for(int i = 0; i < 16; i++) { memcpy(Neo68KROM + i * 0x10000, dst + sec[i] * 0x10000, 0x10000); } free(dst); } }
FerchogtX Posted February 27, 2006 Posted February 27, 2006 for new ms5boot you should use this init if your src is based on fba plus!static int ms5bootInit() { int nRet; nNeoTextROMFixType = 2; nRet = NeoInit(); if (nRet == 0) { SekMapHandler(5, 0x2ffff0, 0x2fffff, SM_WRITE); SekSetWriteWordHandler(5, ms5bootWriteWordBankswitch); } return nRet; }if not you should use your decryption routines as you handle them, but the bankswitch handler should be the same as old mslug5bwrotewordbankswitch.See ya!!!!
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