mirror of
https://github.com/holub/mame
synced 2025-04-26 10:13:37 +03:00
added missing \n to remaining fatalerror() calls (no whatsnew)
This commit is contained in:
parent
cca3001670
commit
8cf19f400c
@ -407,7 +407,7 @@ void sam6883_device::horizontal_sync(void)
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("Should not get here");
|
||||
fatalerror("Should not get here\n");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -176,7 +176,7 @@ private:
|
||||
case 0x06: x_division = 1; break;
|
||||
case 0x07: x_division = 1; break;
|
||||
default:
|
||||
fatalerror("Should not get here");
|
||||
fatalerror("Should not get here\n");
|
||||
return;
|
||||
}
|
||||
|
||||
@ -204,7 +204,7 @@ private:
|
||||
case 0x06: y_division = 1; break;
|
||||
case 0x07: y_division = 1; break;
|
||||
default:
|
||||
fatalerror("Should not get here");
|
||||
fatalerror("Should not get here\n");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -179,7 +179,7 @@ static void process_clock(running_machine &machine)
|
||||
break;
|
||||
|
||||
default:
|
||||
//fatalerror("NYI");
|
||||
//fatalerror("NYI\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -226,7 +226,7 @@ static void process_clock(running_machine &machine)
|
||||
break;
|
||||
|
||||
default:
|
||||
//fatalerror("NYI");
|
||||
//fatalerror("NYI\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -468,7 +468,7 @@ static void adb_do_command(apple2gs_state *state)
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("ADB command 0x%02x unimplemented", state->m_adb_command);
|
||||
fatalerror("ADB command 0x%02x unimplemented\n", state->m_adb_command);
|
||||
break;
|
||||
}
|
||||
state->m_adb_kmstatus |= 0x20;
|
||||
@ -593,7 +593,7 @@ static void adb_write_datareg(running_machine &machine, UINT8 data)
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("ADB command 0x%02x unimplemented", data);
|
||||
fatalerror("ADB command 0x%02x unimplemented\n", data);
|
||||
break;
|
||||
|
||||
}
|
||||
|
@ -492,7 +492,7 @@ static int a800_check_cart_type(device_image_interface &image)
|
||||
}
|
||||
|
||||
if ((strcmp(image.device().tag(),":cart2") == 0) && (type != A800_RIGHT_8K))
|
||||
fatalerror("You cannot load this image '%s' in the right slot", image.filename());
|
||||
fatalerror("You cannot load this image '%s' in the right slot\n", image.filename());
|
||||
|
||||
return type;
|
||||
}
|
||||
|
@ -664,7 +664,7 @@ WRITE8_HANDLER(bebox_80000480_w)
|
||||
|
||||
READ8_HANDLER(bebox_80000480_r)
|
||||
{
|
||||
fatalerror("NYI");
|
||||
fatalerror("NYI\n");
|
||||
}
|
||||
|
||||
|
||||
|
@ -173,7 +173,7 @@ UINT32 coco3_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, c
|
||||
}
|
||||
else
|
||||
{
|
||||
fatalerror("Called screen_update() with invalid tag '%s'", screen.tag());
|
||||
fatalerror("Called screen_update() with invalid tag '%s'\n", screen.tag());
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
@ -163,7 +163,7 @@ static const char *line_value_string(cococart_line_value value)
|
||||
s = "Q";
|
||||
break;
|
||||
default:
|
||||
fatalerror("Invalid value");
|
||||
fatalerror("Invalid value\n");
|
||||
break;
|
||||
}
|
||||
return s;
|
||||
|
@ -597,7 +597,7 @@ void diskonchip_g3_device::sec_2_write_1036(UINT8 data)
|
||||
{
|
||||
UINT32 block, page, plane;
|
||||
block = (m_data_1036 >> 7);
|
||||
if (block >= m_blocks) fatalerror( "DOCG3: invalid block (%d)", block);
|
||||
if (block >= m_blocks) fatalerror( "DOCG3: invalid block (%d)\n", block);
|
||||
plane = (m_data_1036 >> 6) & 1;
|
||||
page = (m_data_1036 >> 0) & 0x3F;
|
||||
verboselog( machine(), 5, "flash address %d - %06X (plane %d block %04X page %04X)\n", m_address_count, m_data_1036, plane, block, page);
|
||||
|
@ -112,7 +112,7 @@ int fmscsi_device::get_scsi_cmd_len(UINT8 cbyte)
|
||||
if (group == 1 || group == 2) return 10;
|
||||
if (group == 5) return 12;
|
||||
|
||||
fatalerror("fmscsi: Unknown SCSI command group %d", group);
|
||||
fatalerror("fmscsi: Unknown SCSI command group %d\n", group);
|
||||
|
||||
return 6;
|
||||
}
|
||||
|
@ -580,7 +580,7 @@ void ibm5160_mb_device::install_device(device_t *dev, offs_t start, offs_t end,
|
||||
m_maincpu->memory().space(AS_IO)->install_legacy_readwrite_handler(*dev, start, end, mask, mirror, rhandler, rhandler_name, whandler, whandler_name,0xffff);
|
||||
break;
|
||||
default:
|
||||
fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported", buswidth);
|
||||
fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -597,7 +597,7 @@ void ibm5160_mb_device::install_device_write(device_t *dev, offs_t start, offs_t
|
||||
m_maincpu->memory().space(AS_IO)->install_legacy_write_handler(*dev, start, end, mask, mirror, whandler, whandler_name, 0xffff);
|
||||
break;
|
||||
default:
|
||||
fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported", buswidth);
|
||||
fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -614,7 +614,7 @@ void ibm5160_mb_device::install_device(offs_t start, offs_t end, offs_t mask, of
|
||||
m_maincpu->memory().space(AS_IO)->install_readwrite_handler(start, end, mask, mirror, rhandler, whandler, 0xffff);
|
||||
break;
|
||||
default:
|
||||
fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported", buswidth);
|
||||
fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -641,7 +641,7 @@ void ibm5160_mb_device::device_start()
|
||||
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);
|
||||
break;
|
||||
default:
|
||||
fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported", buswidth);
|
||||
fatalerror("IBM5160_MOTHERBOARD: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -130,7 +130,7 @@ UINT32 i82439tx_device::pci_read(pci_bus_device *pcibus, int function, int offse
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("i82439tx_pci_read(): Unexpected PCI read 0x%02X", offset);
|
||||
fatalerror("i82439tx_pci_read(): Unexpected PCI read 0x%02X\n", offset);
|
||||
break;
|
||||
}
|
||||
return result;
|
||||
@ -246,7 +246,7 @@ void i82439tx_device::pci_write(pci_bus_device *pcibus, int function, int offset
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("i82439tx_pci_write(): Unexpected PCI write 0x%02X <-- 0x%08X", offset, data);
|
||||
fatalerror("i82439tx_pci_write(): Unexpected PCI write 0x%02X <-- 0x%08X\n", offset, data);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -223,7 +223,7 @@ void isa8_device::install_space(address_spacenum spacenum, offs_t start, offs_t
|
||||
}
|
||||
break;
|
||||
default:
|
||||
fatalerror("ISA8: Bus width %d not supported", buswidth);
|
||||
fatalerror("ISA8: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -253,7 +253,7 @@ void isa8_device::install_space(address_spacenum spacenum, offs_t start, offs_t
|
||||
}
|
||||
break;
|
||||
default:
|
||||
fatalerror("ISA8: Bus width %d not supported", buswidth);
|
||||
fatalerror("ISA8: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -283,7 +283,7 @@ void isa8_device::install_space(address_spacenum spacenum, device_t *dev, offs_t
|
||||
}
|
||||
break;
|
||||
default:
|
||||
fatalerror("ISA8: Bus width %d not supported", buswidth);
|
||||
fatalerror("ISA8: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -564,7 +564,7 @@ void isa16_device::install16_device(device_t *dev, offs_t start, offs_t end, off
|
||||
|
||||
break;
|
||||
default:
|
||||
fatalerror("ISA16: Bus width %d not supported", buswidth);
|
||||
fatalerror("ISA16: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -592,7 +592,7 @@ void isa16_device::install16_device(offs_t start, offs_t end, offs_t mask, offs_
|
||||
|
||||
break;
|
||||
default:
|
||||
fatalerror("ISA16: Bus width %d not supported", buswidth);
|
||||
fatalerror("ISA16: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -620,7 +620,7 @@ void isa16_device::install16_device(offs_t start, offs_t end, offs_t mask, offs_
|
||||
|
||||
break;
|
||||
default:
|
||||
fatalerror("ISA16: Bus width %d not supported", buswidth);
|
||||
fatalerror("ISA16: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -1502,7 +1502,7 @@ static UINT32 lynx_time_factor(int val)
|
||||
case 4: return 62500;
|
||||
case 5: return 31250;
|
||||
case 6: return 15625;
|
||||
default: fatalerror("invalid value");
|
||||
default: fatalerror("invalid value\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -191,7 +191,7 @@ int mb89352_device::get_scsi_cmd_len(UINT8 cbyte)
|
||||
if (group == 1 || group == 2) return 10;
|
||||
if (group == 5) return 12;
|
||||
|
||||
fatalerror("MB89352: Unknown SCSI command group %d", group);
|
||||
fatalerror("MB89352: Unknown SCSI command group %d\n", group);
|
||||
|
||||
return 6;
|
||||
}
|
||||
|
@ -93,7 +93,7 @@ static attotime interrupt_period_table(int val)
|
||||
case 5: return attotime::from_seconds(10);
|
||||
case 6: return attotime::from_seconds(30);
|
||||
case 7: return attotime::from_seconds(60);
|
||||
default: fatalerror("out of range");
|
||||
default: fatalerror("out of range\n");
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -178,7 +178,7 @@ UINT32 mpc105_device::pci_read(pci_bus_device *pcibus, int function, int offset,
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("Unknown CPU");
|
||||
fatalerror("Unknown CPU\n");
|
||||
break;
|
||||
}
|
||||
break;
|
||||
@ -250,7 +250,7 @@ void mpc105_device::pci_write(pci_bus_device *pcibus, int function, int offset,
|
||||
break;
|
||||
|
||||
case 0xA8: /* processor interface configuration 1 */
|
||||
//fatalerror("mpc105_pci_write(): Unexpected PCI write 0x%02X <-- 0x%08X", offset, data);
|
||||
//fatalerror("mpc105_pci_write(): Unexpected PCI write 0x%02X <-- 0x%08X\n", offset, data);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -60,7 +60,7 @@ static int get_cmd_len(int cbyte)
|
||||
if (group == 1 || group == 2) return 10;
|
||||
if (group == 5) return 12;
|
||||
|
||||
fatalerror("NCR5380: Unknown SCSI command group %d", group);
|
||||
fatalerror("NCR5380: Unknown SCSI command group %d\n", group);
|
||||
|
||||
return 6;
|
||||
}
|
||||
|
@ -151,7 +151,7 @@ void ncr5390_device::step(bool timeout)
|
||||
if(win != scsi_id) {
|
||||
scsi_bus->data_w(scsi_refid, 0);
|
||||
scsi_bus->ctrl_w(scsi_refid, 0, S_ALL);
|
||||
fatalerror("need to wait for bus free");
|
||||
fatalerror("need to wait for bus free\n");
|
||||
break;
|
||||
}
|
||||
state = (state & STATE_MASK) | (ARB_ASSERT_SEL << SUB_SHIFT);
|
||||
@ -489,7 +489,7 @@ void ncr5390_device::step(bool timeout)
|
||||
void ncr5390_device::send_byte()
|
||||
{
|
||||
if(!fifo_pos)
|
||||
fatalerror("ncr5390_device::send_byte - !fifo_pos");
|
||||
fatalerror("ncr5390_device::send_byte - !fifo_pos\n");
|
||||
|
||||
state = (state & STATE_MASK) | (SEND_WAIT_SETTLE << SUB_SHIFT);
|
||||
if((state & STATE_MASK) != INIT_XFR_SEND_PAD &&
|
||||
|
@ -1252,7 +1252,7 @@ DEVICE_IMAGE_LOAD( nes_cart )
|
||||
{
|
||||
auto_free(image.device().machine(), temp_prg);
|
||||
auto_free(image.device().machine(), temp_chr);
|
||||
fatalerror("UNIF should have a [MAPR] chunk to work. Check if your image has been corrupted");
|
||||
fatalerror("UNIF should have a [MAPR] chunk to work. Check if your image has been corrupted\n");
|
||||
}
|
||||
|
||||
if (!prg_start)
|
||||
@ -1341,9 +1341,9 @@ DEVICE_IMAGE_LOAD( nes_cart )
|
||||
|
||||
// validate the xml fields
|
||||
if (!prg_size)
|
||||
fatalerror("No PRG entry for this software! Please check if the xml list got corrupted");
|
||||
fatalerror("No PRG entry for this software! Please check if the xml list got corrupted\n");
|
||||
if (prg_size < 0x8000)
|
||||
fatalerror("PRG entry is too small! Please check if the xml list got corrupted");
|
||||
fatalerror("PRG entry is too small! Please check if the xml list got corrupted\n");
|
||||
|
||||
// Allocate class pointers for PRG/VROM/VRAM/WRAM and copy data there from the temp copies
|
||||
state->m_prg = auto_alloc_array(image.device().machine(), UINT8, prg_size);
|
||||
|
@ -459,7 +459,7 @@ int nes_get_mmc_id( running_machine &machine, int mapper )
|
||||
const nes_mmc *mmc = nes_mapper_lookup(mapper);
|
||||
|
||||
if (mmc == NULL)
|
||||
fatalerror("Unimplemented Mapper %d", mapper);
|
||||
fatalerror("Unimplemented Mapper %d\n", mapper);
|
||||
|
||||
return mmc->pcb_id;
|
||||
}
|
||||
|
@ -396,10 +396,10 @@ INLINE void chr_sanity_check( running_machine &machine, int source )
|
||||
nes_state *state = machine.driver_data<nes_state>();
|
||||
|
||||
if (source == CHRRAM && state->m_vram == NULL)
|
||||
fatalerror("CHRRAM bankswitch with no VRAM");
|
||||
fatalerror("CHRRAM bankswitch with no VRAM\n");
|
||||
|
||||
if (source == CHRROM && state->m_vrom == NULL)
|
||||
fatalerror("CHRROM bankswitch with no VROM");
|
||||
fatalerror("CHRROM bankswitch with no VROM\n");
|
||||
}
|
||||
|
||||
static void chr8( running_machine &machine, int bank, int source )
|
||||
|
@ -1852,7 +1852,7 @@ static void mmc5_ppu_mirror( running_machine &machine, int page, int src )
|
||||
set_nt_page(machine, page, MMC5FILL, 0, 0);
|
||||
break;
|
||||
default:
|
||||
fatalerror("This should never happen");
|
||||
fatalerror("This should never happen\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -160,7 +160,7 @@ void unif_mapr_setup( running_machine &machine, const char *board )
|
||||
logerror("%s\n", board);
|
||||
|
||||
if (unif_board == NULL)
|
||||
fatalerror("Unknown UNIF board %s.", board);
|
||||
fatalerror("Unknown UNIF board %s.\n", board);
|
||||
|
||||
state->m_pcb_id = unif_board->board_idx;
|
||||
state->m_battery = unif_board->nvwram; // we should implement battery banks based on the size of this...
|
||||
|
@ -152,7 +152,7 @@ void nubus_device::install_device(offs_t start, offs_t end, read8_delegate rhand
|
||||
m_maincpu->memory().space(AS_PROGRAM)->install_readwrite_handler(start, end, rhandler, whandler, ((UINT64)mask<<32)|mask);
|
||||
break;
|
||||
default:
|
||||
fatalerror("NUBUS: Bus width %d not supported", buswidth);
|
||||
fatalerror("NUBUS: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -170,7 +170,7 @@ void nubus_device::install_device(offs_t start, offs_t end, read16_delegate rhan
|
||||
m_maincpu->memory().space(AS_PROGRAM)->install_readwrite_handler(start, end, rhandler, whandler, ((UINT64)mask<<32)|mask);
|
||||
break;
|
||||
default:
|
||||
fatalerror("NUBUS: Bus width %d not supported", buswidth);
|
||||
fatalerror("NUBUS: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -188,7 +188,7 @@ void nubus_device::install_device(offs_t start, offs_t end, read32_delegate rhan
|
||||
m_maincpu->memory().space(AS_PROGRAM)->install_readwrite_handler(start, end, rhandler, whandler, ((UINT64)mask<<32)|mask);
|
||||
break;
|
||||
default:
|
||||
fatalerror("NUBUS: Bus width %d not supported", buswidth);
|
||||
fatalerror("NUBUS: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -206,7 +206,7 @@ void nubus_device::install_readonly_device(offs_t start, offs_t end, read32_dele
|
||||
m_maincpu->memory().space(AS_PROGRAM)->install_read_handler(start, end, rhandler, ((UINT64)mask<<32)|mask);
|
||||
break;
|
||||
default:
|
||||
fatalerror("NUBUS: Bus width %d not supported", buswidth);
|
||||
fatalerror("NUBUS: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -224,7 +224,7 @@ void nubus_device::install_writeonly_device(offs_t start, offs_t end, write32_de
|
||||
m_maincpu->memory().space(AS_PROGRAM)->install_write_handler(start, end, whandler, ((UINT64)mask<<32)|mask);
|
||||
break;
|
||||
default:
|
||||
fatalerror("NUBUS: Bus width %d not supported", buswidth);
|
||||
fatalerror("NUBUS: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -377,7 +377,7 @@ static void s3c44b0_lcd_configure( device_t *device)
|
||||
case S3C44B0_PNRMODE_STN_04_SS : width = ((hozval + 1) * 4); break;
|
||||
case S3C44B0_PNRMODE_STN_04_DS : width = ((hozval + 1) * 4); break;
|
||||
case S3C44B0_PNRMODE_STN_08_SS : width = ((hozval + 1) * 8); break;
|
||||
default : fatalerror( "invalid display mode (%d)", dismode); break;
|
||||
default : fatalerror( "invalid display mode (%d)\n", dismode); break;
|
||||
}
|
||||
height = lineval + 1;
|
||||
lcd->framerate = framerate;
|
||||
@ -862,7 +862,7 @@ static TIMER_CALLBACK( s3c44b0_pwm_timer_exp )
|
||||
verboselog( machine, 2, "PWM %d timer callback\n", ch);
|
||||
if (BITS( s3c44b0->pwm.regs.tcfg1, 27, 24) == (ch + 1))
|
||||
{
|
||||
fatalerror( "s3c44b0_dma_request_pwm( device);");
|
||||
fatalerror( "s3c44b0_dma_request_pwm( device)\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -288,7 +288,7 @@ static void apple2_hires_draw(running_machine &machine, bitmap_ind16 &bitmap, co
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("Invalid column count");
|
||||
fatalerror("Invalid column count\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -334,7 +334,7 @@ static void apple2_hires_draw(running_machine &machine, bitmap_ind16 &bitmap, co
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("Invalid column count");
|
||||
fatalerror("Invalid column count\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -88,21 +88,21 @@ static void cirrus_update_8bpp(running_machine &machine, bitmap_rgb32 &bitmap, c
|
||||
|
||||
static void cirrus_update_16bpp(running_machine &machine, bitmap_rgb32 &bitmap, const rectangle &cliprect)
|
||||
{
|
||||
fatalerror("NYI");
|
||||
fatalerror("NYI\n");
|
||||
}
|
||||
|
||||
|
||||
|
||||
static void cirrus_update_24bpp(running_machine &machine, bitmap_rgb32 &bitmap, const rectangle &cliprect)
|
||||
{
|
||||
fatalerror("NYI");
|
||||
fatalerror("NYI\n");
|
||||
}
|
||||
|
||||
|
||||
|
||||
static void cirrus_update_32bpp(running_machine &machine, bitmap_rgb32 &bitmap, const rectangle &cliprect)
|
||||
{
|
||||
fatalerror("NYI");
|
||||
fatalerror("NYI\n");
|
||||
}
|
||||
|
||||
|
||||
|
@ -97,7 +97,7 @@ static void (*const gba_draw_scanline_modes[8][3])(running_machine &machine, gba
|
||||
|
||||
static 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)
|
||||
{
|
||||
fatalerror( "Invalid screen mode (6 or 7)!" );
|
||||
fatalerror( "Invalid screen mode (6 or 7)!\n" );
|
||||
}
|
||||
|
||||
static 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)
|
||||
|
@ -433,7 +433,7 @@ const char *gime_base_device::timer_type_string(void)
|
||||
result = "HBORD";
|
||||
break;
|
||||
default:
|
||||
fatalerror("Should not get here");
|
||||
fatalerror("Should not get here\n");
|
||||
break;
|
||||
}
|
||||
return result;
|
||||
@ -1220,7 +1220,7 @@ void gime_base_device::update_border(UINT16 physical_scanline)
|
||||
border = 0x26; /* orange */
|
||||
break;
|
||||
default:
|
||||
fatalerror("Should not get here");
|
||||
fatalerror("Should not get here\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -1287,7 +1287,7 @@ ATTR_FORCE_INLINE UINT16 gime_base_device::get_lines_per_row(void)
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("Should not get here");
|
||||
fatalerror("Should not get here\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -1318,7 +1318,7 @@ ATTR_FORCE_INLINE UINT16 gime_base_device::get_lines_per_row(void)
|
||||
lines_per_row = 0xFFFF;
|
||||
break;
|
||||
default:
|
||||
fatalerror("Should not get here");
|
||||
fatalerror("Should not get here\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -1466,7 +1466,7 @@ void gime_base_device::record_body_scanline(UINT16 physical_scanline, UINT16 log
|
||||
|
||||
default:
|
||||
/* should not get here */
|
||||
fatalerror("Should not get here");
|
||||
fatalerror("Should not get here\n");
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -1491,7 +1491,7 @@ void gime_base_device::record_body_scanline(UINT16 physical_scanline, UINT16 log
|
||||
case 0x18: pitch = record_scanline_res<128, &gime_base_device::get_data_without_attributes, false>(physical_scanline); break;
|
||||
case 0x1C: pitch = record_scanline_res<160, &gime_base_device::get_data_without_attributes, false>(physical_scanline); break;
|
||||
default:
|
||||
fatalerror("Should not get here");
|
||||
fatalerror("Should not get here\n");
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -1509,7 +1509,7 @@ void gime_base_device::record_body_scanline(UINT16 physical_scanline, UINT16 log
|
||||
case 0x14: pitch = record_scanline_res< 80, &gime_base_device::get_data_without_attributes, true>(physical_scanline); break;
|
||||
case 0x15: pitch = record_scanline_res< 80, &gime_base_device::get_data_with_attributes, true>(physical_scanline); break;
|
||||
default:
|
||||
fatalerror("Should not get here");
|
||||
fatalerror("Should not get here\n");
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -1573,7 +1573,7 @@ void gime_base_device::update_geometry(void)
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("Should not get here");
|
||||
fatalerror("Should not get here\n");
|
||||
break;
|
||||
}
|
||||
|
||||
@ -1596,7 +1596,7 @@ void gime_base_device::update_geometry(void)
|
||||
|
||||
UINT32 gime_base_device::emit_dummy_samples(const scanline_record *scanline, int sample_start, int sample_count, pixel_t *pixels, const pixel_t *palette)
|
||||
{
|
||||
fatalerror("Should not get here");
|
||||
fatalerror("Should not get here\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -265,7 +265,7 @@ const char *mc6847_friend_device::scanline_zone_string(scanline_zone zone)
|
||||
case SCANLINE_ZONE_VBLANK: result = "SCANLINE_ZONE_VBLANK"; break;
|
||||
case SCANLINE_ZONE_FRAME_END: result = "SCANLINE_ZONE_FRAME_END"; break;
|
||||
default:
|
||||
fatalerror("Should not get here");
|
||||
fatalerror("Should not get here\n");
|
||||
break;
|
||||
}
|
||||
return result;
|
||||
@ -514,7 +514,7 @@ void mc6847_base_device::setup_fixed_mode(struct devcb_read_line callback, UINT8
|
||||
{
|
||||
// for reasons of performance, we currently only support DEVCB_NULL,
|
||||
// DEVCB_LINE_GND and DEVCB_LINE_VCC
|
||||
emu_fatalerror("mc6847 does not support this callback type for mode bits");
|
||||
emu_fatalerror("mc6847 does not support this callback type for mode bits\n");
|
||||
}
|
||||
}
|
||||
|
||||
@ -652,7 +652,7 @@ void mc6847_base_device::record_body_scanline(UINT16 physical_scanline, UINT16 s
|
||||
|
||||
default:
|
||||
/* should not get here */
|
||||
fatalerror("should not get here");
|
||||
fatalerror("should not get here\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -699,7 +699,7 @@ ATTR_FORCE_INLINE mc6847_base_device::pixel_t mc6847_base_device::border_value(U
|
||||
result = palette[7];
|
||||
break;
|
||||
default:
|
||||
fatalerror("Should not get here");
|
||||
fatalerror("Should not get here\n");
|
||||
break;
|
||||
}
|
||||
return result;
|
||||
|
@ -423,7 +423,7 @@ protected:
|
||||
|
||||
default:
|
||||
/* should not get here */
|
||||
fatalerror("Should not get here");
|
||||
fatalerror("Should not get here\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -223,9 +223,8 @@ static SCREEN_UPDATE_RGB32( cb264 )
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("cb264: unknown video mode %d", card->m_cb264_mode);
|
||||
fatalerror("cb264: unknown video mode %d\n", card->m_cb264_mode);
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
@ -223,9 +223,8 @@ static SCREEN_UPDATE_RGB32( m2hires )
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("m2hires: unknown video mode %d", card->m_mode);
|
||||
fatalerror("m2hires: unknown video mode %d\n", card->m_mode);
|
||||
break;
|
||||
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -226,9 +226,8 @@ static SCREEN_UPDATE_RGB32( spec8s3 )
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("spec8s3: unknown video mode %d", card->m_mode);
|
||||
fatalerror("spec8s3: unknown video mode %d\n", card->m_mode);
|
||||
break;
|
||||
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -235,9 +235,8 @@ static SCREEN_UPDATE_RGB32( specpdq )
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("specpdq: unknown video mode %d", card->m_mode);
|
||||
fatalerror("specpdq: unknown video mode %d\n", card->m_mode);
|
||||
break;
|
||||
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -210,9 +210,8 @@ static SCREEN_UPDATE_RGB32( wsportrait )
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("wsportrait: unknown video mode %d", card->m_mode);
|
||||
fatalerror("wsportrait: unknown video mode %d\n", card->m_mode);
|
||||
break;
|
||||
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -707,7 +707,7 @@ VIDEO_START( pc_aga )
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("AGA: Bus width %d not supported", buswidth);
|
||||
fatalerror("AGA: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
|
||||
@ -738,7 +738,7 @@ VIDEO_START( pc200 )
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("AGA: Bus width %d not supported", buswidth);
|
||||
fatalerror("AGA: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
memset( &aga, 0, sizeof( aga ) );
|
||||
|
@ -944,7 +944,7 @@ static VIDEO_START( pc_t1t )
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("T1T: Bus width %d not supported", buswidth);
|
||||
fatalerror("T1T: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -969,7 +969,7 @@ static VIDEO_START( pc_pcjr )
|
||||
break;
|
||||
|
||||
default:
|
||||
fatalerror("PCJR: Bus width %d not supported", buswidth);
|
||||
fatalerror("PCJR: Bus width %d not supported\n", buswidth);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user