Previous 199869 Revisions Next

r37073 Sunday 5th April, 2015 at 22:50:42 UTC by Zoƫ Blade
Capitalise acronyms
[src/emu/bus/amiga/zorro]a590.c

trunk/src/emu/bus/amiga/zorro/a590.c
r245584r245585
155155   ROMX_LOAD("390721-01.u13", 0x4000, 0x2000, CRC(00dbf615) SHA1(503940d04fb3b49eaa61100fd3a487018b35e25a), ROM_SKIP(1) | ROM_BIOS(2))
156156   ROMX_LOAD("390722-01.u12", 0x4001, 0x2000, CRC(c460cfdb) SHA1(0de457daec3b84f75e8fb344defe24ce56cda3e0), ROM_SKIP(1) | ROM_BIOS(2))
157157
158   // changelog v6.6: fixes dual scsi problems with the wd33c93a controller
158   // changelog v6.6: fixes dual SCSI problems with the wd33c93a controller
159159   ROM_SYSTEM_BIOS(2, "v66", "Version 6.6")
160160   ROMX_LOAD("390721-02.u13", 0x0000, 0x2000, CRC(c0871d25) SHA1(e155f18abb90cf820589c15e70559d3b6b391af8), ROM_SKIP(1) | ROM_BIOS(3))
161161   ROMX_LOAD("390722-02.u12", 0x0001, 0x2000, CRC(e536bbb2) SHA1(fd7f8a6da18c1b02d07eb990c2467a24183ede12), ROM_SKIP(1) | ROM_BIOS(3))
162162   ROMX_LOAD("390721-02.u13", 0x4000, 0x2000, CRC(c0871d25) SHA1(e155f18abb90cf820589c15e70559d3b6b391af8), ROM_SKIP(1) | ROM_BIOS(3))
163163   ROMX_LOAD("390722-02.u12", 0x4001, 0x2000, CRC(e536bbb2) SHA1(fd7f8a6da18c1b02d07eb990c2467a24183ede12), ROM_SKIP(1) | ROM_BIOS(3))
164164
165   // final commodore released version
165   // final Commodore released version
166166   ROM_SYSTEM_BIOS(3, "v70", "Version 7.0")
167167   ROMX_LOAD("390721-03.u13", 0x0000, 0x2000, CRC(2942747a) SHA1(dbd7648e79c753337ff3e4f491de224bf05e6bb6), ROM_SKIP(1) | ROM_BIOS(4))
168168   ROMX_LOAD("390722-03.u12", 0x0001, 0x2000, CRC(a9ccffed) SHA1(149f5bd52e2d29904e3de483b9ad772448e9278e), ROM_SKIP(1) | ROM_BIOS(4))
169169   ROMX_LOAD("390721-03.u13", 0x4000, 0x2000, CRC(2942747a) SHA1(dbd7648e79c753337ff3e4f491de224bf05e6bb6), ROM_SKIP(1) | ROM_BIOS(4))
170170   ROMX_LOAD("390722-03.u12", 0x4001, 0x2000, CRC(a9ccffed) SHA1(149f5bd52e2d29904e3de483b9ad772448e9278e), ROM_SKIP(1) | ROM_BIOS(4))
171171
172   // third-party upgrade rom, requires a small rom adapter pcb
172   // third-party upgrade ROM, requires a small ROM adapter pcb
173173   ROM_SYSTEM_BIOS(4, "g614", "Guru-ROM 6.14")
174174   ROMX_LOAD("gururom_v614.bin", 0x0000, 0x8000, CRC(04e52f93) SHA1(6da21b6f5e8f8837d64507cd8a4d5cdcac4f426b), ROM_GROUPWORD | ROM_BIOS(5))
175175
r245584r245585
234234{
235235   set_zorro_device();
236236
237   // setup dmac
237   // setup DMAC
238238   m_dmac->set_address_space(m_slot->m_space);
239239   m_dmac->set_rom(memregion("bootrom")->base());
240240}
r245584r245585
243243{
244244   set_zorro_device();
245245
246   // setup dmac
246   // setup DMAC
247247   m_dmac->set_address_space(m_slot->m_space);
248248   m_dmac->set_rom(memregion("bootrom")->base());
249249}
r245584r245585
258258
259259void dmac_hdc_device::resize_ram(int config)
260260{
261   // allocate space for ram
261   // allocate space for RAM
262262   switch (config & 0x0f)
263263   {
264264   case 0x01:
r245584r245585
301301   m_int6 = m_jp4->read() & 0x01;
302302   resize_ram(m_dips->read() & 0x0f);
303303
304   // then tell the dmac to start configuring
304   // then tell the DMAC to start configuring
305305   m_dmac->configin_w(state);
306306}
307307
r245584r245585
311311   m_int6 = m_jp3->read() & 0x01;
312312   resize_ram(m_jp1->read() & 0x0f);
313313
314   // then tell the dmac to start configuring
314   // then tell the DMAC to start configuring
315315   m_dmac->configin_w(state);
316316}
317317
r245584r245585
345345
346346WRITE_LINE_MEMBER( dmac_hdc_device::scsi_irq_w )
347347{
348   // should be or'ed with xt-ide irq
348   // should be or'ed with xt-ide IRQ
349349   m_dmac->intx_w(state);
350350}


Previous 199869 Revisions Next


© 1997-2024 The MAME Team