Jump to content

Recommended Posts

  • Replies 638
  • Created
  • Last Reply

Top Posters In This Topic

Posted
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.

Posted
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.

 

Thanks. I do rather enjoy the features offered by the universe bios.

Posted
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.

Posted
great... i'll try that when i get home. :lol:

 

:) 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

Posted

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

Posted

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.

Posted
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?

Posted
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?

 

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.)

Posted

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!!!! :peopleseybrow:

Posted (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. :peopleseybrow:

 

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 by + T +
Posted
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);
}
}

Posted

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!!!! :peopleseybrow:

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 account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...