diff options
Diffstat (limited to 'src/mess/machine/isa.c')
-rw-r--r-- | src/mess/machine/isa.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mess/machine/isa.c b/src/mess/machine/isa.c index 7580e803051..edc4290a44d 100644 --- a/src/mess/machine/isa.c +++ b/src/mess/machine/isa.c @@ -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; } } |