From 64105fa176e3c5c8b6cf0dc8968f1311d2ef5f63 Mon Sep 17 00:00:00 2001 From: hap Date: Fri, 3 Nov 2023 22:07:54 +0100 Subject: [PATCH] New working software list items ------------------------------- videoart: A Trip To The Zoo!, Disney Coloring Book, Looney Tunes, My Dream Day, My Favorite Doll, On The Move [Sean Riddle, David Butler] videoart: Marvel Super Heroes [Sean Riddle, SixtyFours] --- hash/videoart.xml | 95 ++++++++++++++++++++++++++++++------ src/mame/layout/videoart.lay | 2 +- src/mame/misc/videoart.cpp | 19 ++++---- src/mame/novag/robotadv.cpp | 3 +- 4 files changed, 93 insertions(+), 26 deletions(-) diff --git a/hash/videoart.xml b/hash/videoart.xml index 1b1132e36f4..b0c27d6cad1 100644 --- a/hash/videoart.xml +++ b/hash/videoart.xml @@ -2,27 +2,28 @@ - - + + + A Trip To The Zoo! + 1987 + LJN Toys + + + + + + + + Activity Cartridge 1987 @@ -34,6 +35,17 @@ On The Move + + Disney Coloring Book + 1987 + LJN Toys + + + + + + + Disney Story Book 1987 @@ -45,4 +57,59 @@ On The Move + + Looney Tunes + 1987 + LJN Toys + + + + + + + + + Marvel Super Heroes + 1987 + LJN Toys + + + + + + + + + My Dream Day + 1987 + LJN Toys + + + + + + + + + My Favorite Doll + 1987 + LJN Toys + + + + + + + + + On The Move + 1987 + LJN Toys + + + + + + + diff --git a/src/mame/layout/videoart.lay b/src/mame/layout/videoart.lay index 8aa687a1805..a209afa0cff 100644 --- a/src/mame/layout/videoart.lay +++ b/src/mame/layout/videoart.lay @@ -36,7 +36,7 @@ license:CC0-1.0 - + diff --git a/src/mame/misc/videoart.cpp b/src/mame/misc/videoart.cpp index 2a0a0db34a5..21a8354f0f5 100644 --- a/src/mame/misc/videoart.cpp +++ b/src/mame/misc/videoart.cpp @@ -3,18 +3,19 @@ // thanks-to:Sean Riddle /******************************************************************************* -LJN Video Art +LJN VideoArt -It's a toy for drawing/coloring pictures on the tv, not a video game console. -Picture libraries were available on separate cartridges. +It's a system for drawing/coloring pictures on the tv, not a video game console. +The cartridge ROMs contain no executable code, only data for a title screen and +vector pictures. On the title screen, press CLEAR to start drawing (no need to wait half a minute). -To change the background color, choose one from the color slider and press CLEAR. -Drawing with the same color as the picture outline is not allowed. +Drawing with the same color as the picture outline is not allowed. To change the +background color, choose one from the color slider and press CLEAR. Hardware notes: -- EF6805R2P @ 3.57Mhz (14.318MHz XTAL) -- EF9367P @ 1.507MHz, 128*208 resolution (internally 512*208), 16 colors +- Thomson EF6805R2P @ 3.57Mhz (14.318MHz XTAL) +- Thomson EF9367P @ 1.507MHz, 128*208 resolution (512*208 internally), 16 colors - TSGB01019ACP 48-pin DIP gate array (die label: MOSTEK (C) 1984, MK GB 1000 HAA), interfaces with EF9367P and DRAM - 2*D41416C-15 (16Kbit*4) DRAM @@ -159,7 +160,7 @@ constexpr rgb_t videoart_colors[] = { 0x84, 0xff, 0x68 }, // 5 green { 0xff, 0x90, 0xff }, // c pink - { 0xfc, 0xa8, 0xff }, // 9 light pink + { 0xe0, 0xa8, 0xff }, // 9 lilac { 0xff, 0xc4, 0x40 }, // f orange { 0xff, 0xa0, 0x80 } // e light red }; @@ -410,4 +411,4 @@ ROM_END *******************************************************************************/ // YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY, FULLNAME, FLAGS -SYST( 1987, videoart, 0, 0, videoart, videoart, videoart_state, empty_init, "LJN Toys", "Video Art", MACHINE_SUPPORTS_SAVE | MACHINE_IMPERFECT_COLORS | MACHINE_NO_SOUND_HW ) +SYST( 1987, videoart, 0, 0, videoart, videoart, videoart_state, empty_init, "LJN Toys", "VideoArt", MACHINE_SUPPORTS_SAVE | MACHINE_IMPERFECT_COLORS | MACHINE_NO_SOUND_HW ) diff --git a/src/mame/novag/robotadv.cpp b/src/mame/novag/robotadv.cpp index a70671698c8..99ad9a3922b 100644 --- a/src/mame/novag/robotadv.cpp +++ b/src/mame/novag/robotadv.cpp @@ -10,7 +10,7 @@ Hardware notes: - Zilog Z8400B PS, 6 MHz XTAL - 40KB ROM (4*2764 or equivalent, 4*MSM2716AS) + 1 socket for expansion - 5KB RAM (8*TMM314APL-1, 2*TC5514AP-8 battery-backed) -- SN76489AN +- SN76489AN sound - robot arm with 4 DC motors - 12+12 leds, 8*8 magnet sensors, printer port @@ -459,7 +459,6 @@ void robotadv_state::io_map(address_map &map) *******************************************************************************/ static INPUT_PORTS_START( robotadv ) - PORT_START("IN.0") PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_C) PORT_NAME("Trace Forward") PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_E) PORT_NAME("Verify")