diff options
author | 2020-10-22 20:18:29 +0200 | |
---|---|---|
committer | 2020-10-22 20:18:29 +0200 | |
commit | b320f99413e1ede8d04a53fb32b625e4ee51de8c (patch) | |
tree | b90ac3e3035064cd2809542e4b98db96e17fb96d | |
parent | 366a4cc490361cebd9735ef0cae2abbc76980ed0 (diff) |
betacam.cpp, umatic.cpp: Videocassete -> Videocassette
-rw-r--r-- | src/mame/drivers/betacam.cpp | 8 | ||||
-rw-r--r-- | src/mame/drivers/umatic.cpp | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/drivers/betacam.cpp b/src/mame/drivers/betacam.cpp index cf8fa5721b1..38f136351f9 100644 --- a/src/mame/drivers/betacam.cpp +++ b/src/mame/drivers/betacam.cpp @@ -2,7 +2,7 @@ // copyright-holders:Felipe Sanches /**************************************************************************** - Skeleton driver for Sony BETACAM-SP Videocassete Players and Recorders + Skeleton driver for Sony BETACAM-SP Videocassette Players and Recorders List of major ICs: - IC202 - H8/534 (Hitachi Single-Chip Microcomputer) @@ -130,6 +130,6 @@ ROM_START(uvw1800) ROM_END // YEAR NAME PARENT/COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS -SYST(199?, uvw1200, 0, 0, betacam, betacam, betacam_state, empty_init, "Sony", "BETACAM-SP Videocassete Player UVW-1200 RGB", MACHINE_IS_SKELETON) -SYST(199?, uvw1600, 0, 0, betacam, betacam, betacam_state, empty_init, "Sony", "BETACAM-SP Videocassete Player/Recorder UVW-1600 RGB", MACHINE_IS_SKELETON) -SYST(199?, uvw1800, 0, 0, betacam, betacam, betacam_state, empty_init, "Sony", "BETACAM-SP Videocassete Player/Recorder UVW-1800 RGB", MACHINE_IS_SKELETON) +SYST(199?, uvw1200, 0, 0, betacam, betacam, betacam_state, empty_init, "Sony", "BETACAM-SP Videocassette Player UVW-1200 RGB", MACHINE_IS_SKELETON) +SYST(199?, uvw1600, 0, 0, betacam, betacam, betacam_state, empty_init, "Sony", "BETACAM-SP Videocassette Player/Recorder UVW-1600 RGB", MACHINE_IS_SKELETON) +SYST(199?, uvw1800, 0, 0, betacam, betacam, betacam_state, empty_init, "Sony", "BETACAM-SP Videocassette Player/Recorder UVW-1800 RGB", MACHINE_IS_SKELETON) diff --git a/src/mame/drivers/umatic.cpp b/src/mame/drivers/umatic.cpp index 1a431c885b5..0032d1fc40f 100644 --- a/src/mame/drivers/umatic.cpp +++ b/src/mame/drivers/umatic.cpp @@ -2,7 +2,7 @@ // copyright-holders:Felipe Sanches /**************************************************************************** - Skeleton driver for Sony U-Matic Videocassete Recorder + Skeleton driver for Sony U-Matic Videocassette Recorder ****************************************************************************/ @@ -63,9 +63,9 @@ void umatic_state::io_map(address_map &map) void umatic_state::mem_map(address_map &map) { - map(0x0000, 0x17ff).rom(); // 8k-byte EPROM at IC26, but only the first 6kb are mapped. + map(0x0000, 0x17ff).rom(); // 8k-byte EPROM at IC26, but only the first 6kb are mapped. // And remaining unmapped content is all 0xFF. - map(0x1800, 0x1fff).ram(); // 2k-byte CXK5816PN-15L at IC17 + map(0x1800, 0x1fff).ram(); // 2k-byte CXK5816PN-15L at IC17 } static INPUT_PORTS_START(umatic) @@ -89,4 +89,4 @@ ROM_START(vo5850pm) ROM_END // YEAR NAME PARENT/COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS -SYST(19??, vo5850pm, 0, 0, umatic, umatic, umatic_state, empty_init, "Sony", "U-Matic Videocassete Recorder VO-5850PM", MACHINE_IS_SKELETON) +SYST(19??, vo5850pm, 0, 0, umatic, umatic, umatic_state, empty_init, "Sony", "U-Matic Videocassette Recorder VO-5850PM", MACHINE_IS_SKELETON) |