Previous 199869 Revisions Next

r32738 Tuesday 14th October, 2014 at 16:02:19 UTC by David Haywood
new clones
Mario Bros. (Japan, bootleg) [tirino73]

(needs more work)
[src/mame]mame.lst
[src/mame/audio]mario.c
[src/mame/drivers]mario.c
[src/mame/includes]mario.h
[src/mame/video]mario.c

trunk/src/mame/includes/mario.h
r32737r32738
9393   virtual void sound_start();
9494   virtual void sound_reset();
9595   DECLARE_PALETTE_INIT(mario);
96   UINT32 screen_update_common(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
9697   UINT32 screen_update_mario(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
98   UINT32 screen_update_mariobl(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
9799   INTERRUPT_GEN_MEMBER(vblank_irq);
98100   DECLARE_WRITE8_MEMBER(mario_sh_sound_w);
99101   DECLARE_WRITE8_MEMBER(mario_sh1_w);
100102   DECLARE_WRITE8_MEMBER(mario_sh2_w);
101103   DECLARE_READ8_MEMBER(memory_read_byte);
102104   DECLARE_WRITE8_MEMBER(memory_write_byte);
103   void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect);
105   void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, int yaddr, int xaddr);
104106   required_device<cpu_device> m_maincpu;
105   required_device<cpu_device> m_audiocpu;
107   optional_device<cpu_device> m_audiocpu;
106108   required_device<gfxdecode_device> m_gfxdecode;
107109   required_device<palette_device> m_palette;
108   required_device<z80dma_device> m_z80dma;
110   optional_device<z80dma_device> m_z80dma;
109111};
110112
111113/*----------- defined in audio/mario.c -----------*/
trunk/src/mame/video/mario.c
r32737r32738
147147 * confirmed on mametests.org as being present on real PCB as well.
148148 */
149149
150void mario_state::draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect)
150void mario_state::draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, int yaddr, int xaddr)
151151{
152152   /* TODO: draw_sprites should adopt the scanline logic from dkong.c
153153    * The schematics have the same logic for sprite buffering.
r32737r32738
161161         int x, y;
162162
163163         // from schematics ....
164         y = (m_spriteram[offs] + (m_flip ? 0xF7 : 0xF9) + 1) & 0xFF;
165         x = m_spriteram[offs+3];
164         y = (m_spriteram[offs+yaddr] + (m_flip ? 0xF7 : 0xF9) + 1) & 0xFF;
165         x = m_spriteram[offs+xaddr];
166166         // sprite will be drawn if (y + scanline) & 0xF0 = 0xF0
167167         y = 240 - y; /* logical screen position */
168168
r32737r32738
193193   }
194194}
195195
196UINT32 mario_state::screen_update_mario(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
196UINT32 mario_state::screen_update_common(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
197197{
198198   int t;
199199
r32737r32738
207207   m_bg_tilemap->set_scrolly(0, m_gfx_scroll);
208208
209209   m_bg_tilemap->draw(screen, bitmap, cliprect, 0, 0);
210   draw_sprites(bitmap, cliprect);
211210
212211   return 0;
213212}
213
214UINT32 mario_state::screen_update_mario(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
215{
216   screen_update_common(screen, bitmap, cliprect);
217   draw_sprites(bitmap, cliprect, 0, 3);
218   return 0;
219}
220
221UINT32 mario_state::screen_update_mariobl(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
222{
223   screen_update_common(screen, bitmap, cliprect);
224   draw_sprites(bitmap, cliprect, 3, 0);
225   return 0;
226}
trunk/src/mame/drivers/mario.c
r32737r32738
9292#include "emu.h"
9393#include "cpu/z80/z80.h"
9494#include "machine/z80dma.h"
95#include "sound/ay8910.h"
9596
9697#include "includes/mario.h"
9798
r32737r32738
129130 *
130131 *************************************/
131132
132static ADDRESS_MAP_START( mario_map, AS_PROGRAM, 8, mario_state )
133static ADDRESS_MAP_START( mario_map, AS_PROGRAM, 8, mario_state)
133134   AM_RANGE(0x0000, 0x5fff) AM_ROM
134135   AM_RANGE(0x6000, 0x6fff) AM_RAM
135136   AM_RANGE(0x7000, 0x73ff) AM_RAM AM_SHARE("spriteram") /* physical sprite ram */
r32737r32738
148149   AM_RANGE(0xf000, 0xffff) AM_ROM
149150ADDRESS_MAP_END
150151
151static ADDRESS_MAP_START( masao_map, AS_PROGRAM, 8, mario_state )
152static ADDRESS_MAP_START( masao_map, AS_PROGRAM, 8, mario_state)
152153   AM_RANGE(0x0000, 0x5fff) AM_ROM
153154   AM_RANGE(0x6000, 0x6fff) AM_RAM
154155   AM_RANGE(0x7000, 0x73ff) AM_RAM AM_SHARE("spriteram") /* physical sprite ram */
r32737r32738
167168   AM_RANGE(0xf000, 0xffff) AM_ROM
168169ADDRESS_MAP_END
169170
170static ADDRESS_MAP_START( mario_io_map, AS_IO, 8, mario_state )
171static ADDRESS_MAP_START( mario_io_map, AS_IO, 8, mario_state)
171172   ADDRESS_MAP_GLOBAL_MASK(0xff)
172173   AM_RANGE(0x00, 0x00) AM_DEVREADWRITE("z80dma", z80dma_device, read, write)  /* dma controller */
173174ADDRESS_MAP_END
174175
176
177static ADDRESS_MAP_START( mariobl_map, AS_PROGRAM, 8, mario_state)
178   AM_RANGE(0x0000, 0x5fff) AM_ROM
179   AM_RANGE(0x6000, 0x6fff) AM_RAM
180   AM_RANGE(0x7000, 0x73ff) AM_RAM AM_SHARE("spriteram") /* physical sprite ram */
181   AM_RANGE(0x7400, 0x77ff) AM_RAM_WRITE(mario_videoram_w) AM_SHARE("videoram")
182   //AM_RANGE(0xa000, 0xa000) AM_READ_PORT("IN1")
183   AM_RANGE(0xa100, 0xa100) AM_READ_PORT("DSW")    /* DSW */
184   AM_RANGE(0xe000, 0xffff) AM_ROM
185ADDRESS_MAP_END
186
187static ADDRESS_MAP_START( mariobl_io_map, AS_IO, 8, mario_state )
188   ADDRESS_MAP_GLOBAL_MASK(0xff)
189   AM_RANGE(0x00, 0x00) AM_DEVREADWRITE("ay1", ay8910_device, data_r, address_w)
190   AM_RANGE(0x01, 0x01) AM_DEVWRITE("ay1", ay8910_device, data_w)
191   AM_RANGE(0x80, 0x80) AM_DEVREADWRITE("ay2", ay8910_device, data_r, address_w)
192   AM_RANGE(0x81, 0x81) AM_DEVWRITE("ay2", ay8910_device, data_w)
193ADDRESS_MAP_END
194
195
175196/*************************************
176197 *
177198 *  Port definitions
r32737r32738
312333   GFXDECODE_ENTRY( "gfx2", 0, spritelayout,     0, 32 )
313334GFXDECODE_END
314335
336static const gfx_layout spritelayout_bl =
337{
338   16,16,  /* 16*16 sprites */
339   RGN_FRAC(1,3),    /* 256 sprites */
340   3,  /* 3 bits per pixel */
341   { RGN_FRAC(2,3),RGN_FRAC(1,3),RGN_FRAC(0,3) },
342   { 0, 1, 2, 3, 4, 5, 6, 7,     
343         64,65,66,67,68,69,70,71 },
344   { 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8,
345         16*8, 17*8, 18*8, 19*8, 20*8, 21*8, 22*8, 23*8 },
346   16*16
347};
315348
349static GFXDECODE_START( mariobl )
350   GFXDECODE_ENTRY( "gfx1", 0, charlayout,      0, 16 )
351   GFXDECODE_ENTRY( "gfx2", 0, spritelayout_bl,     0, 32 )
352GFXDECODE_END
353
316354/*************************************
317355 *
318356 *  Machine driver
r32737r32738
371409   MCFG_FRAGMENT_ADD(masao_audio)
372410MACHINE_CONFIG_END
373411
412/*
413Mario Bros japan bootleg on Ambush hardware
374414
415This romset (japanese version) comes from a faulty bootleg pcb.Game differences are none.
416Note:it runs on a modified (extended) Tecfri's Ambush hardware.
417Main cpu Z80
418Sound ic AY-3-8910 x2 -instead of AY-3-8912 x2 of Ambush
419Work ram 4Kb (6116 x2) -double of Ambush
420OSC: 18,432 Mhz
421Rom definition:
422mbjba-6, mbjba-7, mbjba-8 main program
423mbjba-1 to mbjba-5 gfx (chars,sprites)
424Eproms are 2732,2764,27128
425
426Dumped by tirino73
427*/
428
429static MACHINE_CONFIG_START( mariobl, mario_state )
430
431   MCFG_CPU_ADD("maincpu", Z80, XTAL_18_432MHz/6)      /* XTAL confirmed, divisor guessed */
432   MCFG_CPU_PROGRAM_MAP(mariobl_map)
433   MCFG_CPU_IO_MAP(mariobl_io_map)
434   MCFG_CPU_VBLANK_INT_DRIVER("screen", mario_state,  irq0_line_hold)
435
436   /* video hardware */
437   MCFG_SCREEN_ADD("screen", RASTER)
438   MCFG_SCREEN_RAW_PARAMS(PIXEL_CLOCK, HTOTAL, HBEND, HBSTART, VTOTAL, VBEND, VBSTART)
439   MCFG_SCREEN_UPDATE_DRIVER(mario_state, screen_update_mariobl)
440   MCFG_SCREEN_PALETTE("palette")
441   MCFG_GFXDECODE_ADD("gfxdecode", "palette", mariobl)
442   MCFG_PALETTE_ADD("palette", 512)
443   MCFG_PALETTE_INIT_OWNER(mario_state, mario)
444
445   /* sound hardware */
446   MCFG_SPEAKER_STANDARD_MONO("mono")
447   
448   MCFG_SOUND_ADD("ay1", AY8910, XTAL_18_432MHz/6/2)   /* XTAL confirmed, divisor guessed */
449//   MCFG_AY8910_PORT_A_READ_CB(IOPORT("SYSTEM"))
450   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.33)
451
452   MCFG_SOUND_ADD("ay2", AY8910, XTAL_18_432MHz/6/2)   /* XTAL confirmed, divisor guessed */
453//   MCFG_AY8910_PORT_A_READ_CB(IOPORT("INPUTS"))
454   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.33)
455
456MACHINE_CONFIG_END
457
375458/*************************************
376459 *
377460 *  ROM definitions
r32737r32738
540623   ROM_LOAD( "tma1-c-4p.4p",     0x0000, 0x0200, CRC(afc9bd41) SHA1(90b739c4c7f24a88b6ac5ca29b06c032906a2801) )
541624ROM_END
542625
626ROM_START( mariobl )
627   ROM_REGION( 0x10000, "maincpu", 0 )
628   ROM_LOAD( "mbjba-8.7i",    0x0000, 0x4000, CRC(344c959d) SHA1(162e39c3a17e0dcde3b7eefebe224318c8884de2) )
629   ROM_LOAD( "mbjba-7.7g",    0x4000, 0x2000, CRC(06faf308) SHA1(8c213d9390c168034c1673f3dd97b99322b3485a) )
630   ROM_LOAD( "mbjba-6.7f",    0xe000, 0x2000, CRC(761dd670) SHA1(6d6e45ced8c535cdf56e0ed1bcedb342e9e10a55) )
631
632   ROM_REGION( 0x2000, "gfx1", ROMREGION_INVERT )
633   ROM_LOAD( "mbjba-4.4l",   0x1000, 0x1000, CRC(9379e836) SHA1(fcce66c1b2c5120441840b80723c7d209d42bc45) )
634   ROM_LOAD( "mbjba-5.4n",   0x0000, 0x1000, CRC(9bbcf9fb) SHA1(a917241a3bd94bff72f509d6b3ab8358b9c03eac) )
635
636   ROM_REGION( 0x6000, "gfx2", 0 )
637   ROM_LOAD( "mbjba-1.3l",   0x4000, 0x2000, CRC(c772cb8f) SHA1(7fd6dd9888928fad5c50d96b4ecff954ea8975ce) )
638   ROM_LOAD( "mbjba-2.3ls",  0x2000, 0x2000, CRC(7b58c92e) SHA1(25dfce7a4a93f661f495cc80378d445a2b064ba7) )
639   ROM_LOAD( "mbjba-3.3ns",  0x0000, 0x2000, CRC(3981adb2) SHA1(c12a0c2ae04de6969f4b2dae3bdefc4515d87c55) )
640
641   ROM_REGION( 0x0200, "proms", 0 ) // no prom was present in the dump, assuming to be the same
642   ROM_LOAD( "tma1-c-4p.4p",     0x0000, 0x0200, CRC(afc9bd41) SHA1(90b739c4c7f24a88b6ac5ca29b06c032906a2801) )
643ROM_END
644
543645/*************************************
544646 *
545647 *  Game drivers
r32737r32738
551653GAME( 1983, marioo,   mario,   mario,   marioo, driver_device,  0, ROT0, "Nintendo of America", "Mario Bros. (US, Unknown Rev)", GAME_SUPPORTS_SAVE )
552654GAME( 1983, marioj,   mario,   mario,   marioj, driver_device,  0, ROT0, "Nintendo", "Mario Bros. (Japan)", GAME_SUPPORTS_SAVE )
553655GAME( 1983, masao,    mario,   masao,   masao, driver_device,   0, ROT0, "bootleg", "Masao", GAME_SUPPORTS_SAVE )
656GAME( 1983, mariobl,  mario,   mariobl, marioj, driver_device,  0, ROT180, "bootleg", "Mario Bros. (Japan, bootleg)", GAME_SUPPORTS_SAVE ) // was listed as 'on extended Ambush hardware' but doesn't seem similar apart from the sound system?
trunk/src/mame/mame.lst
r32737r32738
12441244marioo          // (c) 1983 Nintendo of America
12451245marioj          // (c) 1983 Nintendo
12461246masao           // bootleg
1247mariobl         // bootleg
12471248pestplce        // bootleg on donkey kong hw
12481249spclforc        // (c) 1985 Senko Industries (Magic Eletronics Inc. license)
12491250spcfrcii        // (c) 1985 Senko Industries (Magic Eletronics Inc. license)
trunk/src/mame/audio/mario.c
r32737r32738
414414
415415void mario_state::sound_start()
416416{
417
417418   device_t *audiocpu = machine().device("audiocpu");
419
420   if (!audiocpu) return;
421
418422#if USE_8039
419423   UINT8 *SND = memregion("audiocpu")->base();
420424
r32737r32738
436440
437441void mario_state::sound_reset()
438442{
443   if (!m_audiocpu) return;
444
439445   address_space &space = machine().device("audiocpu")->memory().space(AS_PROGRAM);
440446
441447#if USE_8039

Previous 199869 Revisions Next


© 1997-2024 The MAME Team