Previous 199869 Revisions Next

r17740 Sunday 9th September, 2012 at 07:08:47 UTC by Oliver Stöneberg
added missing \n to remaining fatalerror() calls (no whatsnew)
[src/mess/machine]6883sam.c 6883sam.h apple2gs.c ataricrt.c bebox.c coco3.c cococart.c docg3.c fm_scsi.c genpc.c i82439tx.c isa.c lynx.c mb89352.c mm58274c.c mpc105.c ncr5380.c ncr5390.c nes.c nes_ines.c nes_mmc.c nes_pcb.c nes_unif.c nubus.c s3c44b0.c
[src/mess/video]apple2.c cirrus.c gba.c gime.c mc6847.c mc6847.h nubus_cb264.c nubus_m2hires.c nubus_spec8.c nubus_specpdq.c nubus_wsportrait.c pc_aga.c pc_t1t.c

trunk/src/mess/machine/ataricrt.c
r17739r17740
492492   }
493493
494494   if ((strcmp(image.device().tag(),":cart2") == 0) && (type != A800_RIGHT_8K))
495      fatalerror("You cannot load this image '%s' in the right slot", image.filename());
495      fatalerror("You cannot load this image '%s' in the right slot\n", image.filename());
496496
497497   return type;
498498}
trunk/src/mess/machine/fm_scsi.c
r17739r17740
112112   if (group == 1 || group == 2) return 10;
113113   if (group == 5) return 12;
114114
115   fatalerror("fmscsi: Unknown SCSI command group %d", group);
115   fatalerror("fmscsi: Unknown SCSI command group %d\n", group);
116116
117117   return 6;
118118}
trunk/src/mess/machine/apple2gs.c
r17739r17740
179179                  break;
180180
181181               default:
182                  //fatalerror("NYI");
182                  //fatalerror("NYI\n");
183183                  break;
184184            }
185185         }
r17739r17740
226226         break;
227227
228228      default:
229         //fatalerror("NYI");
229         //fatalerror("NYI\n");
230230         break;
231231   }
232232}
r17739r17740
468468            break;
469469
470470      default:
471         fatalerror("ADB command 0x%02x unimplemented", state->m_adb_command);
471         fatalerror("ADB command 0x%02x unimplemented\n", state->m_adb_command);
472472         break;
473473   }
474474   state->m_adb_kmstatus |= 0x20;
r17739r17740
593593                    break;
594594
595595            default:
596               fatalerror("ADB command 0x%02x unimplemented", data);
596               fatalerror("ADB command 0x%02x unimplemented\n", data);
597597               break;
598598
599599         }
trunk/src/mess/machine/mpc105.c
r17739r17740
178178               break;
179179
180180            default:
181               fatalerror("Unknown CPU");
181               fatalerror("Unknown CPU\n");
182182               break;
183183         }
184184         break;
r17739r17740
250250         break;
251251
252252      case 0xA8:   /* processor interface configuration 1 */
253         //fatalerror("mpc105_pci_write(): Unexpected PCI write 0x%02X <-- 0x%08X", offset, data);
253         //fatalerror("mpc105_pci_write(): Unexpected PCI write 0x%02X <-- 0x%08X\n", offset, data);
254254         break;
255255   }
256256}
trunk/src/mess/machine/nes.c
r17739r17740
12521252         {
12531253            auto_free(image.device().machine(), temp_prg);
12541254            auto_free(image.device().machine(), temp_chr);
1255            fatalerror("UNIF should have a [MAPR] chunk to work. Check if your image has been corrupted");
1255            fatalerror("UNIF should have a [MAPR] chunk to work. Check if your image has been corrupted\n");
12561256         }
12571257
12581258         if (!prg_start)
r17739r17740
13411341
13421342      // validate the xml fields
13431343      if (!prg_size)
1344         fatalerror("No PRG entry for this software! Please check if the xml list got corrupted");
1344         fatalerror("No PRG entry for this software! Please check if the xml list got corrupted\n");
13451345      if (prg_size < 0x8000)
1346         fatalerror("PRG entry is too small! Please check if the xml list got corrupted");
1346         fatalerror("PRG entry is too small! Please check if the xml list got corrupted\n");
13471347
13481348      // Allocate class pointers for PRG/VROM/VRAM/WRAM and copy data there from the temp copies
13491349      state->m_prg = auto_alloc_array(image.device().machine(), UINT8, prg_size);
trunk/src/mess/machine/nes_mmc.c
r17739r17740
396396   nes_state *state = machine.driver_data<nes_state>();
397397
398398   if (source == CHRRAM && state->m_vram == NULL)
399      fatalerror("CHRRAM bankswitch with no VRAM");
399      fatalerror("CHRRAM bankswitch with no VRAM\n");
400400
401401   if (source == CHRROM && state->m_vrom == NULL)
402      fatalerror("CHRROM bankswitch with no VROM");
402      fatalerror("CHRROM bankswitch with no VROM\n");
403403}
404404
405405static void chr8( running_machine &machine, int bank, int source )
trunk/src/mess/machine/docg3.c
r17739r17740
597597      {
598598         UINT32 block, page, plane;
599599         block = (m_data_1036 >> 7);
600         if (block >= m_blocks) fatalerror( "DOCG3: invalid block (%d)", block);
600         if (block >= m_blocks) fatalerror( "DOCG3: invalid block (%d)\n", block);
601601         plane = (m_data_1036 >> 6) & 1;
602602         page = (m_data_1036 >> 0) & 0x3F;
603603         verboselog( machine(), 5, "flash address %d - %06X (plane %d block %04X page %04X)\n", m_address_count, m_data_1036, plane, block, page);
trunk/src/mess/machine/s3c44b0.c
r17739r17740
377377      case S3C44B0_PNRMODE_STN_04_SS : width = ((hozval + 1) * 4); break;
378378      case S3C44B0_PNRMODE_STN_04_DS : width = ((hozval + 1) * 4); break;
379379      case S3C44B0_PNRMODE_STN_08_SS : width = ((hozval + 1) * 8); break;
380      default : fatalerror( "invalid display mode (%d)", dismode); break;
380      default : fatalerror( "invalid display mode (%d)\n", dismode); break;
381381   }
382382   height = lineval + 1;
383383   lcd->framerate = framerate;
r17739r17740
862862   verboselog( machine, 2, "PWM %d timer callback\n", ch);
863863   if (BITS( s3c44b0->pwm.regs.tcfg1, 27, 24) == (ch + 1))
864864   {
865      fatalerror( "s3c44b0_dma_request_pwm( device);");
865      fatalerror( "s3c44b0_dma_request_pwm( device)\n");
866866   }
867867   else
868868   {
trunk/src/mess/machine/nes_ines.c
r17739r17740
459459   const nes_mmc *mmc = nes_mapper_lookup(mapper);
460460
461461   if (mmc == NULL)
462      fatalerror("Unimplemented Mapper %d", mapper);
462      fatalerror("Unimplemented Mapper %d\n", mapper);
463463
464464   return mmc->pcb_id;
465465}
trunk/src/mess/machine/bebox.c
r17739r17740
664664
665665READ8_HANDLER(bebox_80000480_r)
666666{
667   fatalerror("NYI");
667   fatalerror("NYI\n");
668668}
669669
670670
trunk/src/mess/machine/nubus.c
r17739r17740
152152         m_maincpu->memory().space(AS_PROGRAM)->install_readwrite_handler(start, end, rhandler, whandler, ((UINT64)mask<<32)|mask);
153153         break;
154154      default:
155         fatalerror("NUBUS: Bus width %d not supported", buswidth);
155         fatalerror("NUBUS: Bus width %d not supported\n", buswidth);
156156         break;
157157   }
158158}
r17739r17740
170170         m_maincpu->memory().space(AS_PROGRAM)->install_readwrite_handler(start, end, rhandler, whandler, ((UINT64)mask<<32)|mask);
171171         break;
172172      default:
173         fatalerror("NUBUS: Bus width %d not supported", buswidth);
173         fatalerror("NUBUS: Bus width %d not supported\n", buswidth);
174174         break;
175175   }
176176}
r17739r17740
188188         m_maincpu->memory().space(AS_PROGRAM)->install_readwrite_handler(start, end, rhandler, whandler, ((UINT64)mask<<32)|mask);
189189         break;
190190      default:
191         fatalerror("NUBUS: Bus width %d not supported", buswidth);
191         fatalerror("NUBUS: Bus width %d not supported\n", buswidth);
192192         break;
193193   }
194194}
r17739r17740
206206         m_maincpu->memory().space(AS_PROGRAM)->install_read_handler(start, end, rhandler, ((UINT64)mask<<32)|mask);
207207         break;
208208      default:
209         fatalerror("NUBUS: Bus width %d not supported", buswidth);
209         fatalerror("NUBUS: Bus width %d not supported\n", buswidth);
210210         break;
211211   }
212212}
r17739r17740
224224         m_maincpu->memory().space(AS_PROGRAM)->install_write_handler(start, end, whandler, ((UINT64)mask<<32)|mask);
225225         break;
226226      default:
227         fatalerror("NUBUS: Bus width %d not supported", buswidth);
227         fatalerror("NUBUS: Bus width %d not supported\n", buswidth);
228228         break;
229229   }
230230}
trunk/src/mess/machine/ncr5380.c
r17739r17740
6060   if (group == 1 || group == 2) return 10;
6161   if (group == 5) return 12;
6262
63   fatalerror("NCR5380: Unknown SCSI command group %d", group);
63   fatalerror("NCR5380: Unknown SCSI command group %d\n", group);
6464
6565   return 6;
6666}
trunk/src/mess/machine/6883sam.c
r17739r17740
407407         break;
408408
409409      default:
410         fatalerror("Should not get here");
410         fatalerror("Should not get here\n");
411411         return;
412412   }
413413}
trunk/src/mess/machine/mb89352.c
r17739r17740
191191   if (group == 1 || group == 2) return 10;
192192   if (group == 5) return 12;
193193
194   fatalerror("MB89352: Unknown SCSI command group %d", group);
194   fatalerror("MB89352: Unknown SCSI command group %d\n", group);
195195
196196   return 6;
197197}
trunk/src/mess/machine/6883sam.h
r17739r17740
176176         case 0x06:   x_division = 1;   break;
177177         case 0x07:   x_division = 1;   break;
178178         default:
179            fatalerror("Should not get here");
179            fatalerror("Should not get here\n");
180180            return;
181181      }
182182
r17739r17740
204204         case 0x06:   y_division = 1;      break;
205205         case 0x07:   y_division = 1;      break;
206206         default:
207            fatalerror("Should not get here");
207            fatalerror("Should not get here\n");
208208            return;
209209      }
210210
trunk/src/mess/machine/genpc.c
r17739r17740
580580         m_maincpu->memory().space(AS_IO)->install_legacy_readwrite_handler(*dev, start, end, mask, mirror, rhandler, rhandler_name, whandler, whandler_name,0xffff);
581581         break;
582582      default:
583         fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported", buswidth);
583         fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported\n", buswidth);
584584         break;
585585   }
586586}
r17739r17740
597597         m_maincpu->memory().space(AS_IO)->install_legacy_write_handler(*dev, start, end, mask, mirror, whandler, whandler_name, 0xffff);
598598         break;
599599      default:
600         fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported", buswidth);
600         fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported\n", buswidth);
601601         break;
602602   }
603603}
r17739r17740
614614         m_maincpu->memory().space(AS_IO)->install_readwrite_handler(start, end, mask, mirror, rhandler, whandler, 0xffff);
615615         break;
616616      default:
617         fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported", buswidth);
617         fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported\n", buswidth);
618618         break;
619619   }
620620}
r17739r17740
641641         m_maincpu->memory().space(AS_IO)->install_readwrite_handler(0x0060, 0x0063, 0, 0, read8_delegate(FUNC(i8255_device::read), (i8255_device*)m_ppi8255), write8_delegate(FUNC(i8255_device::write), (i8255_device*)m_ppi8255), 0xffff);
642642         break;
643643      default:
644         fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported", buswidth);
644         fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported\n", buswidth);
645645         break;
646646   }
647647
trunk/src/mess/machine/ncr5390.c
r17739r17740
151151      if(win != scsi_id) {
152152         scsi_bus->data_w(scsi_refid, 0);
153153         scsi_bus->ctrl_w(scsi_refid, 0, S_ALL);
154         fatalerror("need to wait for bus free");
154         fatalerror("need to wait for bus free\n");
155155         break;
156156      }
157157      state = (state & STATE_MASK) | (ARB_ASSERT_SEL << SUB_SHIFT);
r17739r17740
489489void ncr5390_device::send_byte()
490490{
491491   if(!fifo_pos)
492      fatalerror("ncr5390_device::send_byte - !fifo_pos");
492      fatalerror("ncr5390_device::send_byte - !fifo_pos\n");
493493
494494   state = (state & STATE_MASK) | (SEND_WAIT_SETTLE << SUB_SHIFT);
495495   if((state & STATE_MASK) != INIT_XFR_SEND_PAD &&
trunk/src/mess/machine/nes_pcb.c
r17739r17740
18521852         set_nt_page(machine, page, MMC5FILL, 0, 0);
18531853         break;
18541854      default:
1855         fatalerror("This should never happen");
1855         fatalerror("This should never happen\n");
18561856         break;
18571857   }
18581858}
trunk/src/mess/machine/nes_unif.c
r17739r17740
160160   logerror("%s\n", board);
161161
162162   if (unif_board == NULL)
163      fatalerror("Unknown UNIF board %s.", board);
163      fatalerror("Unknown UNIF board %s.\n", board);
164164
165165   state->m_pcb_id = unif_board->board_idx;
166166   state->m_battery = unif_board->nvwram;   // we should implement battery banks based on the size of this...
trunk/src/mess/machine/lynx.c
r17739r17740
15021502      case 4: return 62500;
15031503      case 5: return 31250;
15041504      case 6: return 15625;
1505      default: fatalerror("invalid value");
1505      default: fatalerror("invalid value\n");
15061506   }
15071507}
15081508
trunk/src/mess/machine/isa.c
r17739r17740
223223         }
224224         break;
225225      default:
226         fatalerror("ISA8: Bus width %d not supported", buswidth);
226         fatalerror("ISA8: Bus width %d not supported\n", buswidth);
227227         break;
228228   }
229229}
r17739r17740
253253         }
254254         break;
255255      default:
256         fatalerror("ISA8: Bus width %d not supported", buswidth);
256         fatalerror("ISA8: Bus width %d not supported\n", buswidth);
257257         break;
258258   }
259259}
r17739r17740
283283         }
284284         break;
285285      default:
286         fatalerror("ISA8: Bus width %d not supported", buswidth);
286         fatalerror("ISA8: Bus width %d not supported\n", buswidth);
287287         break;
288288   }
289289}
r17739r17740
564564
565565         break;
566566      default:
567         fatalerror("ISA16: Bus width %d not supported", buswidth);
567         fatalerror("ISA16: Bus width %d not supported\n", buswidth);
568568         break;
569569   }
570570}
r17739r17740
592592
593593         break;
594594      default:
595         fatalerror("ISA16: Bus width %d not supported", buswidth);
595         fatalerror("ISA16: Bus width %d not supported\n", buswidth);
596596         break;
597597   }
598598}
r17739r17740
620620
621621         break;
622622      default:
623         fatalerror("ISA16: Bus width %d not supported", buswidth);
623         fatalerror("ISA16: Bus width %d not supported\n", buswidth);
624624         break;
625625   }
626626}
trunk/src/mess/machine/i82439tx.c
r17739r17740
130130         break;
131131
132132      default:
133         fatalerror("i82439tx_pci_read(): Unexpected PCI read 0x%02X", offset);
133         fatalerror("i82439tx_pci_read(): Unexpected PCI read 0x%02X\n", offset);
134134         break;
135135   }
136136   return result;
r17739r17740
246246         break;
247247
248248      default:
249         fatalerror("i82439tx_pci_write(): Unexpected PCI write 0x%02X <-- 0x%08X", offset, data);
249         fatalerror("i82439tx_pci_write(): Unexpected PCI write 0x%02X <-- 0x%08X\n", offset, data);
250250         break;
251251   }
252252}
trunk/src/mess/machine/mm58274c.c
r17739r17740
9393      case 5:   return attotime::from_seconds(10);
9494      case 6:   return attotime::from_seconds(30);
9595      case 7:   return attotime::from_seconds(60);
96      default: fatalerror("out of range");
96      default: fatalerror("out of range\n");
9797   }
9898};
9999
trunk/src/mess/machine/coco3.c
r17739r17740
173173   }
174174   else
175175   {
176      fatalerror("Called screen_update() with invalid tag '%s'", screen.tag());
176      fatalerror("Called screen_update() with invalid tag '%s'\n", screen.tag());
177177   }
178178   return result;
179179}
trunk/src/mess/machine/cococart.c
r17739r17740
163163         s = "Q";
164164         break;
165165      default:
166         fatalerror("Invalid value");
166         fatalerror("Invalid value\n");
167167         break;
168168   }
169169   return s;
trunk/src/mess/video/nubus_wsportrait.c
r17739r17740
210210         break;
211211
212212      default:
213         fatalerror("wsportrait: unknown video mode %d", card->m_mode);
213         fatalerror("wsportrait: unknown video mode %d\n", card->m_mode);
214214         break;
215
216215   }
217216   return 0;
218217}
trunk/src/mess/video/nubus_cb264.c
r17739r17740
223223         break;
224224
225225      default:
226         fatalerror("cb264: unknown video mode %d", card->m_cb264_mode);
226         fatalerror("cb264: unknown video mode %d\n", card->m_cb264_mode);
227227         break;
228
229228   }
230229
231230   return 0;
trunk/src/mess/video/cirrus.c
r17739r17740
8888
8989static void cirrus_update_16bpp(running_machine &machine, bitmap_rgb32 &bitmap, const rectangle &cliprect)
9090{
91   fatalerror("NYI");
91   fatalerror("NYI\n");
9292}
9393
9494
9595
9696static void cirrus_update_24bpp(running_machine &machine, bitmap_rgb32 &bitmap, const rectangle &cliprect)
9797{
98   fatalerror("NYI");
98   fatalerror("NYI\n");
9999}
100100
101101
102102
103103static void cirrus_update_32bpp(running_machine &machine, bitmap_rgb32 &bitmap, const rectangle &cliprect)
104104{
105   fatalerror("NYI");
105   fatalerror("NYI\n");
106106}
107107
108108
trunk/src/mess/video/nubus_specpdq.c
r17739r17740
235235         break;
236236
237237      default:
238         fatalerror("specpdq: unknown video mode %d", card->m_mode);
238         fatalerror("specpdq: unknown video mode %d\n", card->m_mode);
239239         break;
240
241240   }
242241   return 0;
243242}
trunk/src/mess/video/mc6847.c
r17739r17740
265265      case SCANLINE_ZONE_VBLANK:         result = "SCANLINE_ZONE_VBLANK";      break;
266266      case SCANLINE_ZONE_FRAME_END:      result = "SCANLINE_ZONE_FRAME_END";      break;
267267      default:
268         fatalerror("Should not get here");
268         fatalerror("Should not get here\n");
269269         break;
270270   }
271271   return result;
r17739r17740
514514   {
515515      // for reasons of performance, we currently only support DEVCB_NULL,
516516      // DEVCB_LINE_GND and DEVCB_LINE_VCC
517      emu_fatalerror("mc6847 does not support this callback type for mode bits");
517      emu_fatalerror("mc6847 does not support this callback type for mode bits\n");
518518   }
519519}
520520
r17739r17740
652652
653653         default:
654654            /* should not get here */
655            fatalerror("should not get here");
655            fatalerror("should not get here\n");
656656            break;
657657      }
658658   }
r17739r17740
699699         result = palette[7];
700700         break;
701701      default:
702         fatalerror("Should not get here");
702         fatalerror("Should not get here\n");
703703         break;
704704   }
705705   return result;
trunk/src/mess/video/pc_t1t.c
r17739r17740
944944         break;
945945
946946      default:
947         fatalerror("T1T: Bus width %d not supported", buswidth);
947         fatalerror("T1T: Bus width %d not supported\n", buswidth);
948948         break;
949949   }
950950}
r17739r17740
969969         break;
970970
971971      default:
972         fatalerror("PCJR: Bus width %d not supported", buswidth);
972         fatalerror("PCJR: Bus width %d not supported\n", buswidth);
973973         break;
974974   }
975975}
trunk/src/mess/video/mc6847.h
r17739r17740
423423
424424            default:
425425               /* should not get here */
426               fatalerror("Should not get here");
426               fatalerror("Should not get here\n");
427427               break;
428428         }
429429      }
trunk/src/mess/video/pc_aga.c
r17739r17740
707707         break;
708708
709709      default:
710         fatalerror("AGA:  Bus width %d not supported", buswidth);
710         fatalerror("AGA:  Bus width %d not supported\n", buswidth);
711711         break;
712712   }
713713
r17739r17740
738738         break;
739739
740740      default:
741         fatalerror("AGA:  Bus width %d not supported", buswidth);
741         fatalerror("AGA:  Bus width %d not supported\n", buswidth);
742742         break;
743743   }
744744   memset( &aga, 0, sizeof( aga ) );
trunk/src/mess/video/nubus_m2hires.c
r17739r17740
223223         break;
224224
225225      default:
226         fatalerror("m2hires: unknown video mode %d", card->m_mode);
226         fatalerror("m2hires: unknown video mode %d\n", card->m_mode);
227227         break;
228
229228   }
230229   return 0;
231230}
trunk/src/mess/video/nubus_spec8.c
r17739r17740
226226         break;
227227
228228      default:
229         fatalerror("spec8s3: unknown video mode %d", card->m_mode);
229         fatalerror("spec8s3: unknown video mode %d\n", card->m_mode);
230230         break;
231
232231   }
233232   return 0;
234233}
trunk/src/mess/video/apple2.c
r17739r17740
288288               break;
289289
290290            default:
291               fatalerror("Invalid column count");
291               fatalerror("Invalid column count\n");
292292               break;
293293         }
294294      }
r17739r17740
334334               break;
335335
336336            default:
337               fatalerror("Invalid column count");
337               fatalerror("Invalid column count\n");
338338               break;
339339         }
340340      }
trunk/src/mess/video/gime.c
r17739r17740
433433         result = "HBORD";
434434         break;
435435      default:
436         fatalerror("Should not get here");
436         fatalerror("Should not get here\n");
437437         break;
438438   }
439439   return result;
r17739r17740
12201220            border = 0x26;      /* orange */
12211221            break;
12221222         default:
1223            fatalerror("Should not get here");
1223            fatalerror("Should not get here\n");
12241224            break;
12251225      }
12261226   }
r17739r17740
12871287            break;
12881288
12891289         default:
1290            fatalerror("Should not get here");
1290            fatalerror("Should not get here\n");
12911291            break;
12921292      }
12931293   }
r17739r17740
13181318            lines_per_row = 0xFFFF;
13191319            break;
13201320         default:
1321            fatalerror("Should not get here");
1321            fatalerror("Should not get here\n");
13221322            break;
13231323      }
13241324   }
r17739r17740
14661466
14671467         default:
14681468            /* should not get here */
1469            fatalerror("Should not get here");
1469            fatalerror("Should not get here\n");
14701470            return;
14711471      }
14721472   }
r17739r17740
14911491            case 0x18:   pitch = record_scanline_res<128, &gime_base_device::get_data_without_attributes, false>(physical_scanline);   break;
14921492            case 0x1C:   pitch = record_scanline_res<160, &gime_base_device::get_data_without_attributes, false>(physical_scanline);   break;
14931493            default:
1494               fatalerror("Should not get here");
1494               fatalerror("Should not get here\n");
14951495               return;
14961496         }
14971497      }
r17739r17740
15091509            case 0x14:   pitch = record_scanline_res< 80, &gime_base_device::get_data_without_attributes, true>(physical_scanline);   break;
15101510            case 0x15:   pitch = record_scanline_res< 80, &gime_base_device::get_data_with_attributes,    true>(physical_scanline);   break;
15111511            default:
1512               fatalerror("Should not get here");
1512               fatalerror("Should not get here\n");
15131513               return;
15141514         }
15151515      }
r17739r17740
15731573         break;
15741574
15751575      default:
1576         fatalerror("Should not get here");
1576         fatalerror("Should not get here\n");
15771577         break;
15781578   }
15791579
r17739r17740
15961596
15971597UINT32 gime_base_device::emit_dummy_samples(const scanline_record *scanline, int sample_start, int sample_count, pixel_t *pixels, const pixel_t *palette)
15981598{
1599   fatalerror("Should not get here");
1599   fatalerror("Should not get here\n");
16001600   return 0;
16011601}
16021602
trunk/src/mess/video/gba.c
r17739r17740
9797
9898static void invalid_gba_draw_function(running_machine &machine, gba_state *state, int y, UINT32* line0, UINT32* line1, UINT32* line2, UINT32* line3, UINT32* lineOBJ, UINT32* lineOBJWin, UINT32* lineMix, int aux)
9999{
100   fatalerror( "Invalid screen mode (6 or 7)!" );
100   fatalerror( "Invalid screen mode (6 or 7)!\n" );
101101}
102102
103103static void draw_roz_bitmap_scanline(gba_state *state, UINT32 *scanline, int ypos, UINT32 enablemask, UINT32 ctrl, INT32 X, INT32 Y, INT32 PA, INT32 PB, INT32 PC, INT32 PD, INT32 *currentx, INT32 *currenty, int changed, int depth)

Previous 199869 Revisions Next


© 1997-2024 The MAME Team