diff options
author | 2008-10-09 05:31:15 +0000 | |
---|---|---|
committer | 2008-10-09 05:31:15 +0000 | |
commit | 2d6453c98af8d4cae65a906c74e4e083fb48643b (patch) | |
tree | c0fc7591a43dff5569a78e8c795e14cf6de23555 /src/emu/validity.c | |
parent | 3df44083f8d0d74b9c7b7b269976997e0472da27 (diff) |
Made the Z80 daisy chain aware of referencing device-specific devices.
Added preliminary LD-V1000 emulation. Not fully working yet, but mostly
there.
Cleaned up and normalized the three existing laserdisc emulations.
Removed obsolete code from the laserdisc core.
Diffstat (limited to 'src/emu/validity.c')
-rw-r--r-- | src/emu/validity.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/validity.c b/src/emu/validity.c index 44b14d39ac6..2b6e26726b1 100644 --- a/src/emu/validity.c +++ b/src/emu/validity.c @@ -807,7 +807,7 @@ static int validate_cpu(int drivnum, const machine_config *config, const input_p /* validate the global map parameters */ if (map->spacenum != spacenum) { - mame_printf_error("%s: %s CPU #%d space %d has address space %d handlers!", driver->source_file, driver->name, cpunum, spacenum, map->spacenum); + mame_printf_error("%s: %s CPU #%d space %d has address space %d handlers!\n", driver->source_file, driver->name, cpunum, spacenum, map->spacenum); error = TRUE; } if (map->databits != databus_width) |