r7281 Saturday 6th February, 2010 at 23:48:32 UTC by Robbbert
[PC] Fixed empty region warning. Fixed crash due to some test code left in (accidently, i hope).
[src/mess/drivers]pc.c
[src/mess/machine]pc.c

src/mess/machine/pc.c
r7280r7281
13221322MACHINE_START( pc )
13231323{
13241324   pc_fdc_init( machine, &fdc_interface_nc );
1325   
1325#if 0
1326/* I hope this was accidently left in... */
13261327   FILE *f = fopen("CGAN.DAT","rb");
13271328   UINT8 data[4096];
13281329   fread(data,1,4096,f);
r7280r7281
13331334      fwrite(data+i,1,1,f);
13341335   }
13351336   fclose(f);
1336   
1337#endif
13371338}
13381339
13391340
src/mess/drivers/pc.c
r7280r7281
31683168   ROM_SYSTEM_BIOS(2, "v392", "v3.92")
31693169   ROMX_LOAD( "m88.bin", 0xfc000, 0x2000, CRC(fe1b4e36) SHA1(fcb420af0ff09a7d43fcb9b7d0b0233a2071c159), ROM_BIOS(3))
31703170   ROMX_LOAD( "b88.bin", 0xfe000, 0x2000, CRC(58a418df) SHA1(216398d4e4302ee7efcc2c8f9ff9d8a1161229ea), ROM_BIOS(3))
3171   ROM_REGION(0x2000,"gfx1", 0)   
3171   ROM_REGION(0x2000,"gfx1", ROMREGION_ERASE00)   
31723172   // Here CGA rom with cyrillic support should be added
31733173ROM_END
31743174

Previous 509077 RevisionsNext 50


© 1998-2010 The MESS Team