📄 congo.c
字号:
/***************************************************************************
Congo Bongo memory map (preliminary)
0000-1fff ROM 1
2000-3fff ROM 2
4000-5fff ROM 3
6000-7fff ROM 4
8000-87ff RAM 1
8800-8fff RAM 2
a000-a3ff Video RAM
a400-a7ff Color RAM
8400-8fff sprites
read:
c000 IN0
c001 IN1
c002 DSW1
c003 DSW2
c008 IN2
write:
c000-c002 ?
c006 ?
c018 coinAen, used to enable input on coin slot A
c019 coinBen, used to enable input on coin slot B
c01a serven, used to enable input on service sw
c01b counterA,coin counter for slot A
c01c counterB,coin counter for slot B
c01d background enable
c01e flip screen
c01f interrupt enable
c028-c029 background playfield position
c031 sprite enable ?
c032 sprite start
c033 sprite count
interrupts:
VBlank triggers IRQ, handled with interrupt mode 1
NMI causes a ROM/RAM test.
***************************************************************************/
#include "driver.h"
#include "vidhrdw/generic.h"
extern struct GfxLayout zaxxon_charlayout1;
extern struct GfxLayout zaxxon_charlayout2;
extern int zaxxon_vid_type;
extern unsigned char *zaxxon_background_position;
extern unsigned char *zaxxon_background_enable;
void zaxxon_vh_convert_color_prom(unsigned char *palette, unsigned short *colortable,const unsigned char *color_prom);
int zaxxon_vh_start(void);
void zaxxon_vh_stop(void);
void zaxxon_vh_screenrefresh(struct osd_bitmap *bitmap,int full_refresh);
void congo_daio(int offset, int data);
void congo_init_machine(void)
{
zaxxon_vid_type = 1;
}
static struct MemoryReadAddress readmem[] =
{
{ 0x8000, 0x8fff, MRA_RAM },
{ 0xa000, 0x83ff, MRA_RAM },
{ 0xa000, 0xa7ff, MRA_RAM },
{ 0xc000, 0xc000, input_port_0_r },
{ 0xc001, 0xc001, input_port_1_r },
{ 0xc008, 0xc008, input_port_2_r },
{ 0xc002, 0xc002, input_port_3_r },
{ 0xc003, 0xc003, input_port_4_r },
{ 0x0000, 0x7fff, MRA_ROM },
{ -1 } /* end of table */
};
static struct MemoryWriteAddress writemem[] =
{
{ 0x8000, 0x83ff, MWA_RAM },
{ 0xa000, 0xa3ff, videoram_w, &videoram, &videoram_size },
{ 0xa400, 0xa7ff, colorram_w, &colorram },
{ 0x8400, 0x8fff, MWA_RAM, &spriteram },
{ 0xc01f, 0xc01f, interrupt_enable_w },
{ 0xc028, 0xc029, MWA_RAM, &zaxxon_background_position },
{ 0xc01d, 0xc01d, MWA_RAM, &zaxxon_background_enable },
{ 0xc038, 0xc038, soundlatch_w },
{ 0xc030, 0xc033, MWA_NOP }, /* ??? */
{ 0xc01e, 0xc01e, MWA_NOP }, /* flip unused for now */
{ 0xc018, 0xc018, MWA_NOP }, /* coinAen */
{ 0xc019, 0xc019, MWA_NOP }, /* coinBen */
{ 0xc01a, 0xc01a, MWA_NOP }, /* serven */
{ 0xc01b, 0xc01c, coin_counter_w }, /* counterA, counterB */
{ 0x0000, 0x7fff, MWA_ROM },
{ -1 } /* end of table */
};
static struct MemoryReadAddress sh_readmem[] =
{
{ 0x0000, 0x1fff, MRA_ROM },
{ 0x4000, 0x47ff, MRA_RAM },
{ 0x8000, 0x8003, soundlatch_r },
{ -1 }
};
static struct MemoryWriteAddress sh_writemem[] =
{
{ 0x6000, 0x6003, SN76496_0_w },
{ 0xa000, 0xa003, SN76496_1_w },
{ 0x4000, 0x47ff, MWA_RAM },
{ 0x8000, 0x8003, congo_daio },
{ 0x0000, 0x2000, MWA_ROM },
{ -1 }
};
/***************************************************************************
Congo Bongo uses NMI to trigger the self test. We use a fake input port
to tie that event to a keypress.
***************************************************************************/
static int congo_interrupt(void)
{
if (readinputport(5) & 1) /* get status of the F2 key */
return nmi_interrupt(); /* trigger self test */
else return interrupt();
}
/* almost the same as Zaxxon; UP and DOWN are inverted, and the joystick is 4 way. */
INPUT_PORTS_START( input_ports )
PORT_START /* IN0 */
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT | IPF_4WAY )
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT | IPF_4WAY )
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP | IPF_4WAY )
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN | IPF_4WAY )
PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON1 )
PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_UNKNOWN ) /* probably unused (the self test doesn't mention it) */
PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_UNKNOWN ) /* probably unused (the self test doesn't mention it) */
PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_UNKNOWN ) /* probably unused (the self test doesn't mention it) */
PORT_START /* IN1 */
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT | IPF_4WAY | IPF_COCKTAIL )
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT | IPF_4WAY | IPF_COCKTAIL )
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP | IPF_4WAY | IPF_COCKTAIL )
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN | IPF_4WAY | IPF_COCKTAIL )
PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON1 | IPF_COCKTAIL )
PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_UNKNOWN ) /* probably unused (the self test doesn't mention it) */
PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_UNKNOWN ) /* probably unused (the self test doesn't mention it) */
PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_UNKNOWN ) /* probably unused (the self test doesn't mention it) */
PORT_START /* IN2 */
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_UNKNOWN ) /* probably unused (the self test doesn't mention it) */
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_UNKNOWN ) /* probably unused (the self test doesn't mention it) */
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_START1 )
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_START2 )
PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_UNKNOWN ) /* probably unused (the self test doesn't mention it) */
/* the coin inputs must stay active for exactly one frame, otherwise */
/* the game will keep inserting coins. */
PORT_BITX(0x20, IP_ACTIVE_HIGH, IPT_COIN1 | IPF_IMPULSE,
"Coin A", IP_KEY_DEFAULT, IP_JOY_DEFAULT, 1 )
PORT_BITX(0x40, IP_ACTIVE_HIGH, IPT_COIN2 | IPF_IMPULSE,
"Coin B", IP_KEY_DEFAULT, IP_JOY_DEFAULT, 1 )
/* Coin Aux doesn't need IMPULSE to pass the test, but it still needs it */
/* to avoid the freeze. */
PORT_BITX(0x80, IP_ACTIVE_HIGH, IPT_COIN3 | IPF_IMPULSE,
"Coin Aux", IP_KEY_DEFAULT, IP_JOY_DEFAULT, 1 )
PORT_START /* DSW0 */
PORT_DIPNAME( 0x03, 0x03, "Bonus Life", IP_KEY_NONE )
PORT_DIPSETTING( 0x03, "10000" )
PORT_DIPSETTING( 0x01, "20000" )
PORT_DIPSETTING( 0x02, "30000" )
PORT_DIPSETTING( 0x00, "40000" )
PORT_DIPNAME( 0x0c, 0x0c, "Difficulty???", IP_KEY_NONE )
PORT_DIPSETTING( 0x0c, "Easy?" )
PORT_DIPSETTING( 0x04, "Medium?" )
PORT_DIPSETTING( 0x08, "Hard?" )
PORT_DIPSETTING( 0x00, "Hardest?" )
PORT_DIPNAME( 0x30, 0x30, "Lives", IP_KEY_NONE )
PORT_DIPSETTING( 0x30, "3" )
PORT_DIPSETTING( 0x10, "4" )
PORT_DIPSETTING( 0x20, "5" )
PORT_BITX( 0, 0x00, IPT_DIPSWITCH_SETTING | IPF_CHEAT, "Infinite", IP_KEY_NONE, IP_JOY_NONE, 0 )
PORT_DIPNAME( 0x40, 0x40, "Demo Sounds", IP_KEY_NONE )
PORT_DIPSETTING( 0x00, "Off" )
PORT_DIPSETTING( 0x40, "On" )
PORT_DIPNAME( 0x80, 0x00, "Cabinet", IP_KEY_NONE )
PORT_DIPSETTING( 0x00, "Upright" )
PORT_DIPSETTING( 0x80, "Cocktail" )
PORT_START /* DSW1 */
PORT_DIPNAME( 0x0f, 0x03, "B Coin/Cred", IP_KEY_NONE )
PORT_DIPSETTING( 0x0f, "4/1" )
PORT_DIPSETTING( 0x07, "3/1" )
PORT_DIPSETTING( 0x0b, "2/1" )
PORT_DIPSETTING( 0x06, "2/1+Bonus each 5" )
PORT_DIPSETTING( 0x0a, "2/1+Bonus each 2" )
PORT_DIPSETTING( 0x03, "1/1" )
PORT_DIPSETTING( 0x02, "1/1+Bonus each 5" )
PORT_DIPSETTING( 0x0c, "1/1+Bonus each 4" )
PORT_DIPSETTING( 0x04, "1/1+Bonus each 2" )
PORT_DIPSETTING( 0x0d, "1/2" )
PORT_DIPSETTING( 0x08, "1/2+Bonus each 5" )
PORT_DIPSETTING( 0x00, "1/2+Bonus each 4" )
PORT_DIPSETTING( 0x05, "1/3" )
PORT_DIPSETTING( 0x09, "1/4" )
PORT_DIPSETTING( 0x01, "1/5" )
PORT_DIPSETTING( 0x0e, "1/6" )
PORT_DIPNAME( 0xf0, 0x30, "A Coin/Cred", IP_KEY_NONE )
PORT_DIPSETTING( 0xf0, "4/1" )
PORT_DIPSETTING( 0x70, "3/1" )
PORT_DIPSETTING( 0xb0, "2/1" )
PORT_DIPSETTING( 0x60, "2/1+Bonus each 5" )
PORT_DIPSETTING( 0xa0, "2/1+Bonus each 2" )
PORT_DIPSETTING( 0x30, "1/1" )
PORT_DIPSETTING( 0x20, "1/1+Bonus each 5" )
PORT_DIPSETTING( 0xc0, "1/1+Bonus each 4" )
PORT_DIPSETTING( 0x40, "1/1+Bonus each 2" )
PORT_DIPSETTING( 0xd0, "1/2" )
PORT_DIPSETTING( 0x80, "1/2+Bonus each 5" )
PORT_DIPSETTING( 0x00, "1/2+Bonus each 4" )
PORT_DIPSETTING( 0x50, "1/3" )
PORT_DIPSETTING( 0x90, "1/4" )
PORT_DIPSETTING( 0x10, "1/5" )
PORT_DIPSETTING( 0xe0, "1/6" )
PORT_START /* FAKE */
/* This fake input port is used to get the status of the F2 key, */
/* and activate the test mode, which is triggered by a NMI */
PORT_BITX(0x01, IP_ACTIVE_HIGH, IPT_SERVICE, "Service Mode", OSD_KEY_F2, IP_JOY_NONE, 0 )
INPUT_PORTS_END
static struct GfxLayout spritelayout =
{
32,32, /* 32*32 sprites */
128, /* 128 sprites */
3, /* 3 bits per pixel */
{ 2*128*128*8, 128*128*8, 0 }, /* the bitplanes are separated */
{ 0, 1, 2, 3, 4, 5, 6, 7,
8*8+0, 8*8+1, 8*8+2, 8*8+3, 8*8+4, 8*8+5, 8*8+6, 8*8+7,
16*8+0, 16*8+1, 16*8+2, 16*8+3, 16*8+4, 16*8+5, 16*8+6, 16*8+7,
24*8+0, 24*8+1, 24*8+2, 24*8+3, 24*8+4, 24*8+5, 24*8+6, 24*8+7 },
{ 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8,
32*8, 33*8, 34*8, 35*8, 36*8, 37*8, 38*8, 39*8,
64*8, 65*8, 66*8, 67*8, 68*8, 69*8, 70*8, 71*8,
96*8, 97*8, 98*8, 99*8, 100*8, 101*8, 102*8, 103*8 },
128*8 /* every sprite takes 128 consecutive bytes */
};
static struct GfxDecodeInfo gfxdecodeinfo[] =
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -