Jump to content

taratata

Premium Members
  • Posts

    717
  • Joined

  • Last visited

Posts posted by taratata

  1. Hi all,

    I've been trying to boot neogeo games in MAME using the unibios. The only way I've found is renaming it to another bios name (in my case vs-bios.rom)... I was wondering: since MAME runs "hacked" games by default, I thought maybe it could run a hacked bios also without any such tricks.

    Not that using this trick is really a problem, but I always get the wrong crc message, which is a little boring in the long run, and I'd prefer to leave the neogeo.zip as it is for other emulators.

    Should I add a driver for it or is there a simpler way?

  2. Just use winrar to unrar the file, the zip file is in the "roms" directory.

    And giving away someone is bad, didn't your parents teach you that? :D

     

    @Weird: After a few tries: on violence level 3 without the unibios, there's blood, with the unibios with sp off also, it's only with the unibios with sp on that there's the "cum" thing.

    No idea what sp is for, though.

  3. darn, I was just about to post my mame driver. Anyways, your GAMEB macro really isn't that specific. I did mein like all the other ones like this
    /* Yuki Enterprises */

    GAMEB( 2003, samsho5, neogeo, neogeo, neogeo, neogeo, neogeo, ROT0, "Yuki Enterprises / Playmore Corporation", "Samurai Showdown V / Samurai Spirits 0" )

    and this is what I put on the driver.c

    DRIVER( samsho5 )    /* 0270 © 2003 Yuki Enterprises / Playmore Corporation */

     

    btw, does yours play with red blood? Cause for some reason I raised the violence level on mine and it looked white still..like cum

    Just do your GAMEB macro the way you like :(

    For the blood, you only have it enabled with violence level 3. With both 1 and 2, you get that weird white thing. You're right, kinda looks like cum :P

  4. Yesss!!!

    That game rocks! :(

    As a "thank-you" (and christmas :P ) present, here is the driver for mame:

    In drivers/neogeo.c:

    ROM_START( samsho5 )
    
               ROM_REGION( 0x800000, REGION_CPU1, 0 )
    
               ROM_LOAD16_WORD_SWAP( "270-p1.bin", 0x000000, 0x800000, CRC(611A6687) )
    
               NEO_SFIX_128K( "270-s1.bin", CRC(33227D62) )
    
               NEO_BIOS_SOUND_128K( "270-m1.bin", CRC(18114FB1) )
    
               ROM_REGION( 0x1000000, REGION_SOUND1, ROMREGION_SOUNDONLY )
    
               ROM_LOAD( "270-v1.bin", 0x000000, 0x400000, CRC(6849136C) )
    
               ROM_LOAD( "270-v2.bin", 0x400000, 0x400000, CRC(222E1774) )
    
               ROM_LOAD( "270-v3.bin", 0x800000, 0x400000, CRC(CD9E7ADC) )
    
               ROM_LOAD( "270-v4.bin", 0xC00000, 0x400000, CRC(8B305CAC) )
    
               NO_DELTAT_REGION
    
               ROM_REGION( 0x4000000, REGION_GFX3, 0 )
    
               ROM_LOAD16_BYTE( "270-c1.bin", 0x0000000, 0x800000, CRC(4E7BDEA1) )
    
               ROM_LOAD16_BYTE( "270-c2.bin", 0x0000001, 0x800000, CRC(7B444985) )
    
               ROM_LOAD16_BYTE( "270-c3.bin", 0x1000000, 0x800000, CRC(8C709A9B) )
    
               ROM_LOAD16_BYTE( "270-c4.bin", 0x1000001, 0x800000, CRC(CFD53F5C) )
    
               ROM_LOAD16_BYTE( "270-c5.bin", 0x2000000, 0x800000, CRC(C026D318) )
    
               ROM_LOAD16_BYTE( "270-c6.bin", 0x2000001, 0x800000, CRC(B3D9D204) )
    
               ROM_LOAD16_BYTE( "270-c7.bin", 0x3000000, 0x800000, CRC(FE03A025) )
    
               ROM_LOAD16_BYTE( "270-c8.bin", 0x3000001, 0x800000, CRC(89DB2D34) )
    
    ROM_END

    DRIVER_INIT( samsho5 )
    {
    neogeo_fix_bank_type = 2;
    init_neogeo();
    }

    GAMEB( 2003, samsho5,  neogeo,   neogeo, raster, neogeo,  samsho5,  ROT0, "SNK", "Samurai Shodown V" )

     

    and in driver.c:

    	DRIVER( samsho5 )  /* 0270  (c) 2003 SNK */

     

    B)

×
×
  • Create New...