Frontend Tech + >> HBMAME / ARCADE64 / MESSUI
View all threads Index   Threaded Mode Threaded  

Pages: 1

Djan
MAME Fan
Reged: 09/10/21
Posts: 2
Send PM


Hack Kof 2000 (Evolution v1.3) on Mame 0.235 missing slashes and text
#391846 - 09/10/21 05:53 AM


Hi, I'm trying to add this HBMame hack from kof2000 (evolution v1.3) to mame 0.235

The problem is that there are graphical errors, that is, there are no graphics, part of the text does not appear, nor bars etc... :/

Change I made I removed this part: NEO_SFIX_MT_512K

And I put this:

Code:

/* NEO_SFIX_MT_512K */
ROM_Y_ZOOM

/* The Encrypted Boards do not have an s1 rom, data for it comes from the Cx ROMs */
ROM_REGION( 0x80000, "cslot1:fixed", 0 )
ROM_FILL( 0x000000, 0x20000, 0x000000 )
ROM_REGION( 0x20000, "fixedbios", 0 )
ROM_LOAD( "sfix.sfix", 0x000000, 0x20000, CRC(c2ea0cfd) SHA1(fd4a618cdcdbf849374f0a50dd8efe9dbab706c3) )



full driver:


Code:


ROM_START( kof2kevo3 ) //The King of Fighters 2000 (Evolution v1.3)
ROM_REGION( 0x500000, "cslot1:maincpu", ROMREGION_BE|ROMREGION_16BIT )
ROM_LOAD16_WORD_SWAP( "257evo3.p1", 0x000000, 0x100000, CRC(93cc8aa5) SHA1(46226909fd182d9edefb529bfe4c91f8a5b02a9e) )
ROM_LOAD16_WORD_SWAP( "257n.p2", 0x100000, 0x400000, CRC(693c2c5e) SHA1(dc9121b7369ef46596343cac055a00aec81704d4) )

/* NEO_SFIX_MT_512K */
ROM_Y_ZOOM

/* The Encrypted Boards do not have an s1 rom, data for it comes from the Cx ROMs */
ROM_REGION( 0x80000, "cslot1:fixed", 0 )
ROM_FILL( 0x000000, 0x20000, 0x000000 )
ROM_REGION( 0x20000, "fixedbios", 0 )
ROM_LOAD( "sfix.sfix", 0x000000, 0x20000, CRC(c2ea0cfd) SHA1(fd4a618cdcdbf849374f0a50dd8efe9dbab706c3) )


NEO_BIOS_AUDIO_256K( "257d.m1", CRC(d404db70) SHA1(8cd1f3e140a9a367de23544e76371b0491287909) )

ROM_REGION( 0x1000000, "cslot1:ymsnd:adpcma", 0 )
ROM_LOAD( "257.v1", 0x000000, 0x400000, CRC(17cde847) SHA1(4bcc0205b70dc6d9216b29025450c9c5b08cb65d) )
ROM_LOAD( "257.v2", 0x400000, 0x400000, CRC(1afb20ff) SHA1(57dfd2de058139345ff2b744a225790baaecd5a2) )
ROM_LOAD( "257.v3", 0x800000, 0x400000, CRC(4605036a) SHA1(51b228a0600d38a6ec37aec4822879ec3b0ee106) )
ROM_LOAD( "257.v4", 0xc00000, 0x400000, CRC(764bbd6b) SHA1(df23c09ca6cf7d0ae5e11ff16e30c159725106b3) )

ROM_REGION( 0x4000000, "cslot1:sprites", 0 )
ROM_LOAD16_BYTE( "257d.c1", 0x0000000, 0x800000, CRC(abcdd424) SHA1(1d52aae8a7806d48c098c2a7a77dff6e02ac4870) )
ROM_LOAD16_BYTE( "257d.c2", 0x0000001, 0x800000, CRC(cda33778) SHA1(a619740364c952c443f27ed9b7c395610f2673c7) )
ROM_LOAD16_BYTE( "257d.c3", 0x1000000, 0x800000, CRC(087fb15b) SHA1(f77cb6e670cdf7709d84d770ecf28533cbfbe6de) )
ROM_LOAD16_BYTE( "257d.c4", 0x1000001, 0x800000, CRC(fe9dfde4) SHA1(23750ff0c4bc084d55eea66a5cdd0ef2d6c32cdc) )
ROM_LOAD16_BYTE( "257d.c5", 0x2000000, 0x800000, CRC(03ee4bf4) SHA1(8f26c5bc525a5786de8e25797e2875a1dfe527be) )
ROM_LOAD16_BYTE( "257d.c6", 0x2000001, 0x800000, CRC(8599cc5b) SHA1(9a05fc12273aebfbc4ac22e88b32ae9ecd269462) )
ROM_LOAD16_BYTE( "257d.c7", 0x3000000, 0x800000, CRC(71dfc3e2) SHA1(1889a8dc88993e35f9fd93ce2bee1de52995932d) )
ROM_LOAD16_BYTE( "257d.c8", 0x3000001, 0x800000, CRC(0fa30e5f) SHA1(0cb7fa6b0219e1af2df9b97786c677651a78f37a) )
ROM_END




RobbbertModerator
Sir
Reged: 08/21/04
Posts: 3204
Loc: A long way from you
Send PM


Re: Hack Kof 2000 (Evolution v1.3) on Mame 0.235 missing slashes and text new [Re: Djan]
#391847 - 09/10/21 12:05 PM


> Hi, I'm trying to add this HBMame hack from kof2000 (evolution v1.3) to mame 0.235
>
> The problem is that there are graphical errors, that is, there are no graphics, part
> of the text does not appear, nor bars etc... :/
>
> Change I made I removed this part: NEO_SFIX_MT_512K

Yes, HBMAME has extra macros to tidy up and make clearer the neogeo rom listings. These macros are not in MAME.



Djan
MAME Fan
Reged: 09/10/21
Posts: 2
Send PM


Re: Hack Kof 2000 (Evolution v1.3) on Mame 0.235 missing slashes and text new [Re: Robbbert]
#391850 - 09/10/21 09:29 PM



Quote:


Yes, HBMAME has extra macros to tidy up and make clearer the neogeo rom listings.
These macros are not in MAME.




Hi Robbert, thank you so much for answering me, would it be very difficult to import these macros to this version of mame 0.235 ?


Pages: 1

Frontend Tech + >> HBMAME / ARCADE64 / MESSUI
View all threads Index   Threaded Mode Threaded  

Extra information Permissions
Moderator:  Robbbert 
0 registered and 71 anonymous users are browsing this forum.
You cannot start new topics
You cannot reply to topics
HTML is enabled
UBBCode is enabled
Thread views: 728