summaryrefslogtreecommitdiffstatshomepage
path: root/trunk/src/mame/drivers/firebeat.c
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/src/mame/drivers/firebeat.c')
-rw-r--r--trunk/src/mame/drivers/firebeat.c2424
1 files changed, 2424 insertions, 0 deletions
diff --git a/trunk/src/mame/drivers/firebeat.c b/trunk/src/mame/drivers/firebeat.c
new file mode 100644
index 00000000000..dfeb0f945cc
--- /dev/null
+++ b/trunk/src/mame/drivers/firebeat.c
@@ -0,0 +1,2424 @@
+/* Konami FireBeat
+
+ Driver by Ville Linde
+
+
+
+ Hardware overview:
+
+ GQ972 PWB(A2) 0000070609 Main board
+ -----------------------------------
+ IBM PowerPC 403GCX at 66MHz
+ (2x) Konami 0000057714 (2D object processor)
+ Yamaha YMZ280B (ADPCM sound chip)
+ Epson RTC65271 RTC/NVRAM
+ National Semiconductor PC16552DV (dual UART)
+
+ GQ974 PWB(A2) 0000070140 Extend board
+ -------------------------------------
+ ADC0808CCN
+ FDC37C665GT (floppy disk controller)
+ National Semiconductor PC16552DV (dual UART)
+ ADM223LJR (RS-232 driver/receiver)
+
+ GQ971 PWB(A2) 0000070254 SPU
+ ----------------------------
+ Motorola MC68HC000FN16 at 16MHz (?)
+ Xilinx XC9572 CPLD
+ Ricoh RF5c400 sound chip
+
+ GQ971 PWB(B2) 0000067784 Backplane
+ ----------------------------------
+ 3x PCB Slots with 2x DIN96S connectors (for main and extend PCBs)
+ 40-pin ATAPI connector for each slot
+
+ GQ986 PWB(A1) 0000073015 Backplane
+ ----------------------------------
+ 2x PCB Slots with 2x DIN96S connectors (for main and extend PCBs)
+ 40-pin ATAPI connector for each slot
+
+ GQ972 PWB(D2) Controller interface on Beatmania III (?)
+ GQ972 PWB(G1) Sound Amp (?)
+ GQ971 PWB(C) Sound Amp
+
+
+ Hardware configurations:
+
+ Beatmania III
+ -------------
+ GQ971 Backplane
+ GQ972 Main Board
+ GQ974 Extend Board
+ GQ971 SPU
+ GQ972 Controller Interface
+ GQ972 Sound Amp
+ Hard drive in Slot 1
+ DVD drive in Slot 2
+
+ Keyboardmania
+ -------------
+ GQ971 Backplane
+ GQ972 Main Board
+ GQ974 Extend Board
+ Yamaha XT446 board (for keyboard sounds) (the board layout matches the Yamaha MU100 Tone Generator)
+ GQ971 Sound Amp
+ CD-ROM drive in Slot 1
+ CD-ROM drive in Slot 2
+
+ ParaParaParadise
+ ----------------
+ GQ986 Backplane
+ GQ972 Main Board
+ 2x CD-ROM drive in Slot 1
+
+
+
+ Games that run on this hardware:
+
+ BIOS Game ID Year Game
+ ------------------------------------------------------------------
+ GQ972 GQ972 2000 Beatmania III
+ GQ972(?) ? 2001 Beatmania III Append 6th Mix
+ GQ972(?) ? 2002 Beatmania III Append 7th Mix
+ GQ972(?) ? 2000 Beatmania III Append Core Remix
+ GQ972(?) ? 2003 Beatmania III The Final
+ GQ974 GQ974 2000 Keyboardmania
+ GQ974 GCA01 2000 Keyboardmania 2nd Mix
+ GQ974 GCA12 2001 Keyboardmania 3rd Mix
+ GQ977 GQ977 2000 Para Para Paradise
+ GQ977 GQ977 2000 Para Para Dancing
+ GQ977 GC977 2000 Para Para Paradise 1.1
+ GQ977 GQA11 2000 Para Para Paradise 1st Mix+
+ GQA02(?) ? 2000 Pop n' Music 4
+ ??? ? 2000 Pop n' Music 5
+ ??? ? 2001 Pop n' Music 6
+ GQA02 GCB00 2001 Pop n' Music 7
+ ??? ? 2002 Pop n' Music 8
+ ??? ? 2000 Pop n' Music Animelo
+ ??? ? 2001 Pop n' Music Animelo 2
+ ??? ? 2001 Pop n' Music Mickey Tunes
+
+ TODO:
+ - The display list pointer setting in the graphics chip is not understood. Currently
+ it has to be changed manually. (BIOS = 0x200000, PPP bootup = 0x1D0800, ingame = 0x0000, 0x8000 & 0x10000)
+
+ - Keyboardmania 3rd mix is missing some graphics in the ingame. Most notably the backgrounds.
+ The display list objects seem to be there, but the address is wrong (0x14c400, instead of the correct address)
+
+ - The external Yamaha MIDI sound board is not emulated (no keyboard sounds).
+*/
+
+#include "emu.h"
+#include "cpu/m68000/m68000.h"
+#include "cpu/powerpc/ppc.h"
+#include "machine/intelfsh.h"
+#include "machine/scsicd.h"
+#include "machine/rtc65271.h"
+#include "machine/pc16552d.h"
+#include "sound/ymz280b.h"
+#include "sound/cdda.h"
+#include "cdrom.h"
+#include "firebeat.lh"
+
+
+typedef struct
+{
+ UINT32 *vram;
+ UINT32 vram_read_address;
+ UINT32 vram_write_fifo_address;
+ UINT32 visible_area;
+} GCU_REGS;
+
+typedef struct
+{
+ UINT8 identifier[8];
+ UINT8 password[8];
+ UINT8 data[0x30];
+} IBUTTON_SUBKEY;
+
+typedef struct
+{
+ IBUTTON_SUBKEY subkey[3];
+} IBUTTON;
+
+
+
+class firebeat_state : public driver_device
+{
+public:
+ firebeat_state(const machine_config &mconfig, device_type type, const char *tag)
+ : driver_device(mconfig, type, tag) { }
+
+ UINT8 m_extend_board_irq_enable;
+ UINT8 m_extend_board_irq_active;
+ emu_timer *m_keyboard_timer;
+ fujitsu_29f016a_device *m_flash[3];
+ GCU_REGS m_gcu[2];
+ int m_tick;
+ int m_layer;
+ UINT8 m_atapi_regs[16];
+ SCSIInstance *m_atapi_device_data[2];
+ UINT16 m_atapi_data[32*1024];
+ UINT8 m_atapi_scsi_packet[32*1024];
+ int m_atapi_data_ptr;
+ int m_atapi_xferlen;
+ int m_atapi_xfermod;
+ int m_atapi_cdata_wait;
+ int m_atapi_drivesel;
+ UINT8 m_temp_data[64*1024];
+ int m_cab_data_ptr;
+ const int * m_cur_cab_data;
+ int m_keyboard_state[2];
+ UINT8 m_spu_shared_ram[0x400];
+ UINT32 *m_work_ram;
+ IBUTTON m_ibutton;
+ int m_ibutton_state;
+ int m_ibutton_read_subkey_ptr;
+ UINT8 m_ibutton_subkey_data[0x40];
+};
+
+
+
+
+
+
+static VIDEO_START(firebeat)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ state->m_gcu[0].vram = auto_alloc_array(machine, UINT32, 0x2000000/4);
+ state->m_gcu[1].vram = auto_alloc_array(machine, UINT32, 0x2000000/4);
+ memset(state->m_gcu[0].vram, 0, 0x2000000);
+ memset(state->m_gcu[1].vram, 0, 0x2000000);
+}
+
+
+static void gcu_draw_object(running_machine &machine, bitmap_t *bitmap, const rectangle *cliprect, int chip, UINT32 *cmd)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ // 0x00: xxx----- -------- -------- -------- command type
+ // 0x00: -------- xxxxxxxx xxxxxxxx xxxxxxxx object data address in vram
+
+ // 0x01: -------- -------- ------xx xxxxxxxx object x
+ // 0x01: -------- ----xxxx xxxxxx-- -------- object y
+ // 0x01: -----x-- -------- -------- -------- object x flip
+ // 0x01: ----x--- -------- -------- -------- object y flip
+ // 0x01: ---x---- -------- -------- -------- object alpha enable (?)
+
+ // 0x02: -------- -------- ------xx xxxxxxxx object width
+ // 0x02: -------- -----xxx xxxxxx-- -------- object x scale
+
+ // 0x03: -------- -------- ------xx xxxxxxxx object height
+ // 0x03: -------- -----xxx xxxxxx-- -------- object y scale
+
+ int x = cmd[1] & 0x3ff;
+ int y = (cmd[1] >> 10) & 0x3ff;
+ int width = (cmd[2] & 0x3ff) + 1;
+ int height = (cmd[3] & 0x3ff) + 1;
+ int xscale = (cmd[2] >> 10) & 0x1ff;
+ int yscale = (cmd[3] >> 10) & 0x1ff;
+ int xflip = (cmd[1] & 0x04000000) ? 1 : 0;
+ int yflip = (cmd[1] & 0x08000000) ? 1 : 0;
+ int alpha_enable = (cmd[1] & 0x10000000) ? 1 : 0;
+ UINT32 address = cmd[0] & 0xffffff;
+ int alpha_level = (cmd[2] >> 27) & 0x1f;
+
+ int i, j;
+ int u, v;
+ UINT16 *vr = (UINT16*)state->m_gcu[chip].vram;
+
+ if (xscale == 0 || yscale == 0)
+ {
+ xscale = 0x40;
+ yscale = 0x40;
+ return;
+ }
+
+ //if ((cmd[2] >> 24) != 0x84 && (cmd[2] >> 24) != 0x04 && (cmd[2] >> 24) != 0x00)
+ // printf("Unknown value = %d, %d\n", (cmd[2] >> 27) & 0x1f, (cmd[2] >> 22) & 0x1f);
+
+ width = (((width * 65536) / xscale) * 64) / 65536;
+ height = (((height * 65536) / yscale) * 64) / 65536;
+
+ if (y > cliprect->max_y || x > cliprect->max_x) {
+ return;
+ }
+ if ((y+height) > cliprect->max_y) {
+ height = cliprect->max_y - y;
+ }
+ if ((x+width) > cliprect->max_x) {
+ width = cliprect->max_x - x;
+ }
+
+ v = 0;
+ for (j=0; j < height; j++)
+ {
+ int xi;
+ int index;
+ UINT16 *d = BITMAP_ADDR16(bitmap, j+y, x);
+ //int index = address + ((v >> 6) * 1024);
+
+ if (yflip)
+ {
+ index = address + ((height - 1 - (v >> 6)) * 1024);
+ }
+ else
+ {
+ index = address + ((v >> 6) * 1024);
+ }
+
+ if (xflip)
+ {
+ d += width;
+ xi = -1;
+ }
+ else
+ {
+ xi = 1;
+ }
+
+ u = 0;
+ for (i=0; i < width; i++)
+ {
+ UINT16 pix = vr[((index + (u >> 6)) ^ 1) & 0xffffff];
+
+ if (alpha_enable)
+ {
+ if (pix & 0x8000)
+ {
+ if ((pix & 0x7fff) != 0)
+ {
+ //*d = pix & 0x7fff;
+ UINT16 srcpix = *d;
+ /*
+ UINT32 r = pix & 0x7c00;
+ UINT32 g = pix & 0x03e0;
+ UINT32 b = pix & 0x001f;
+
+ UINT32 sr = srcpix & 0x7c00;
+ UINT32 sg = srcpix & 0x03e0;
+ UINT32 sb = srcpix & 0x001f;
+
+ sr += r;
+ sg += g;
+ sb += b;
+ if (sr > 0x7c00) sr = 0x7c00;
+ if (sg > 0x03e0) sg = 0x03e0;
+ if (sb > 0x001f) sb = 0x001f;
+
+ *d = sr | sg | sb;
+ */
+
+ UINT32 sr = (srcpix >> 10) & 0x1f;
+ UINT32 sg = (srcpix >> 5) & 0x1f;
+ UINT32 sb = (srcpix >> 0) & 0x1f;
+ UINT32 r = (pix >> 10) & 0x1f;
+ UINT32 g = (pix >> 5) & 0x1f;
+ UINT32 b = (pix >> 0) & 0x1f;
+
+ sr += (r * alpha_level) >> 4;
+ sg += (g * alpha_level) >> 4;
+ sb += (b * alpha_level) >> 4;
+
+ if (sr > 0x1f) sr = 0x1f;
+ if (sg > 0x1f) sg = 0x1f;
+ if (sb > 0x1f) sb = 0x1f;
+
+ *d = (sr << 10) | (sg << 5) | sb;
+ }
+ }
+ }
+ else
+ {
+ if (pix & 0x8000)
+ {
+ *d = pix & 0x7fff;
+ }
+ }
+
+ if ((cmd[0] & 0x10000000) == 0)
+ *d = 0x7fff;
+
+ d += xi;
+ u += xscale;
+ }
+
+ v += yscale;
+ }
+}
+
+static void gcu_fill_rect(bitmap_t *bitmap, const rectangle *cliprect, UINT32 *cmd)
+{
+ int i, j;
+ int x1, y1, x2, y2;
+
+ int x = cmd[1] & 0x3ff;
+ int y = (cmd[1] >> 10) & 0x3ff;
+ int width = (cmd[0] & 0x3ff) + 1;
+ int height = ((cmd[0] >> 10) & 0x3ff) + 1;
+
+ UINT16 color[4];
+
+ color[0] = (cmd[2] >> 16);
+ color[1] = (cmd[2] >> 0);
+ color[2] = (cmd[3] >> 16);
+ color[3] = (cmd[3] >> 0);
+
+ x1 = x;
+ x2 = x + width;
+ y1 = y;
+ y2 = y + height;
+
+ if ((color[0] & 0x8000) == 0 && (color[1] & 0x8000) == 0 && (color[2] & 0x8000) == 0 && (color[3] & 0x8000) == 0)
+ {
+ // optimization, nothing to fill
+ return;
+ }
+
+ // clip
+ if (x1 < cliprect->min_x) x1 = cliprect->min_x;
+ if (y1 < cliprect->min_y) y1 = cliprect->min_y;
+ if (x2 > cliprect->max_x) x2 = cliprect->max_x;
+ if (y2 > cliprect->max_y) y2 = cliprect->max_y;
+
+ for (j=y1; j < y2; j++)
+ {
+ UINT16 *d = BITMAP_ADDR16(bitmap, j, 0);
+ for (i=x1; i < x2; i++)
+ {
+ if (color[i&3] & 0x8000)
+ {
+ d[i] = color[i&3] & 0x7fff;
+ }
+ }
+ }
+}
+
+static void gcu_draw_character(running_machine &machine, bitmap_t *bitmap, const rectangle *cliprect, int chip, UINT32 *cmd)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ // 0x00: xxx----- -------- -------- -------- command type
+ // 0x00: -------- xxxxxxxx xxxxxxxx xxxxxxxx character data address in vram
+
+ // 0x01: -------- -------- ------xx xxxxxxxx character x
+ // 0x01: -------- ----xxxx xxxxxx-- -------- character y
+
+ // 0x02: xxxxxxxx xxxxxxxx -------- -------- color 0
+ // 0x02: -------- -------- xxxxxxxx xxxxxxxx color 1
+
+ // 0x03: xxxxxxxx xxxxxxxx -------- -------- color 2
+ // 0x03: -------- -------- xxxxxxxx xxxxxxxx color 3
+
+ int i, j;
+ int x = cmd[1] & 0x3ff;
+ int y = (cmd[1] >> 10) & 0x3ff;
+ UINT32 address = cmd[0] & 0xffffff;
+ UINT16 color[4];
+
+ UINT16 *vr = (UINT16*)state->m_gcu[chip].vram;
+
+ color[0] = (cmd[2] >> 16) & 0xffff;
+ color[1] = (cmd[2] >> 0) & 0xffff;
+ color[2] = (cmd[3] >> 16) & 0xffff;
+ color[3] = (cmd[3] >> 0) & 0xffff;
+
+
+ if (y > cliprect->max_y || x > cliprect->max_x) {
+ return;
+ }
+
+
+ for (j=0; j < 8; j++)
+ {
+ UINT16 *d = BITMAP_ADDR16(bitmap, y+j, x);
+ UINT16 line = vr[address^1];
+
+ address += 4;
+
+ for (i=0; i < 8; i++)
+ {
+ int pix = (line >> ((7-i) * 2)) & 3;
+ d[i] = color[pix];
+ }
+ }
+}
+
+static void gcu_exec_display_list(running_machine &machine, bitmap_t *bitmap, const rectangle *cliprect, int chip, UINT32 address)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ int counter = 0;
+ int end = 0;
+
+ int i = address / 4;
+ if (i < 0) i = 0;
+ while (!end && counter < 0x1000 && i < (0x2000000/4))
+ {
+ int command;
+ UINT32 cmd[4];
+ cmd[0] = state->m_gcu[chip].vram[i+0];
+ cmd[1] = state->m_gcu[chip].vram[i+1];
+ cmd[2] = state->m_gcu[chip].vram[i+2];
+ cmd[3] = state->m_gcu[chip].vram[i+3];
+
+ command = (cmd[0] >> 29) & 0x7;
+
+ switch (command)
+ {
+ case 0x0: // ???
+ {
+ break;
+ }
+
+ case 0x1: // Branch
+ {
+ gcu_exec_display_list(machine, bitmap, cliprect, chip, cmd[0] & 0xffffff);
+ break;
+ }
+
+ case 0x2: // End of display list
+ {
+ end = 1;
+ break;
+ }
+
+ case 0x3: // ???
+ {
+ break;
+ }
+
+ case 0x4: // Fill rectangle
+ {
+ gcu_fill_rect(bitmap, cliprect, cmd);
+ break;
+ }
+
+ case 0x5: // Draw object
+ {
+ gcu_draw_object(machine, bitmap, cliprect, chip, cmd);
+ break;
+ }
+
+ case 0x7: // Draw 8x8 Character (2-bits per pixel)
+ {
+ gcu_draw_character(machine, bitmap, cliprect, chip, cmd);
+ break;
+ }
+
+ default:
+ //printf("Unknown command %08X %08X %08X %08X at %08X\n", cmd[0], cmd[1], cmd[2], cmd[3], i*4);
+ break;
+ }
+
+ i += 4;
+ counter++;
+ };
+}
+
+static SCREEN_UPDATE(firebeat)
+{
+ firebeat_state *state = screen->machine().driver_data<firebeat_state>();
+ int chip;
+
+ if (screen == screen->machine().devicelist().find(SCREEN, 0))
+ chip = 0;
+ else
+ chip = 1;
+
+ bitmap_fill(bitmap, cliprect, 0);
+
+ if (mame_stricmp(screen->machine().system().name, "popn7") == 0)
+ {
+ gcu_exec_display_list(screen->machine(), bitmap, cliprect, chip, 0x1f80000);
+ }
+ else
+ {
+ if (state->m_layer >= 2)
+ {
+ gcu_exec_display_list(screen->machine(), bitmap, cliprect, chip, 0x8000);
+ gcu_exec_display_list(screen->machine(), bitmap, cliprect, chip, 0x0000);
+ gcu_exec_display_list(screen->machine(), bitmap, cliprect, chip, 0x10000);
+ }
+ else if (state->m_layer == 0)
+ {
+ gcu_exec_display_list(screen->machine(), bitmap, cliprect, chip, 0x200000);
+
+ //gcu_exec_display_list(screen->machine(), bitmap, cliprect, chip, 0x186040);
+ }
+ else if (state->m_layer == 1)
+ {
+ gcu_exec_display_list(screen->machine(), bitmap, cliprect, chip, 0x1d0800);
+
+ gcu_exec_display_list(screen->machine(), bitmap, cliprect, chip, 0x1a9440);
+ }
+ }
+
+ state->m_tick++;
+ if (state->m_tick >= 5)
+ {
+ state->m_tick = 0;
+ if (screen->machine().input().code_pressed(KEYCODE_0))
+ {
+ state->m_layer++;
+ if (state->m_layer > 2)
+ {
+ state->m_layer = 0;
+ }
+ }
+
+ /*
+ if (screen->machine().input().code_pressed_once(KEYCODE_9))
+ {
+ FILE *file = fopen("vram0.bin", "wb");
+ int i;
+
+ for (i=0; i < 0x2000000/4; i++)
+ {
+ fputc((state->m_gcu[0].vram[i] >> 24) & 0xff, file);
+ fputc((state->m_gcu[0].vram[i] >> 16) & 0xff, file);
+ fputc((state->m_gcu[0].vram[i] >> 8) & 0xff, file);
+ fputc((state->m_gcu[0].vram[i] >> 0) & 0xff, file);
+ }
+
+ fclose(file);
+ file = fopen("vram1.bin", "wb");
+
+ for (i=0; i < 0x2000000/4; i++)
+ {
+ fputc((state->m_gcu[1].vram[i] >> 24) & 0xff, file);
+ fputc((state->m_gcu[1].vram[i] >> 16) & 0xff, file);
+ fputc((state->m_gcu[1].vram[i] >> 8) & 0xff, file);
+ fputc((state->m_gcu[1].vram[i] >> 0) & 0xff, file);
+ }
+
+ fclose(file);
+ }
+ */
+ }
+
+ return 0;
+}
+
+static UINT32 GCU_r(running_machine &machine, int chip, UINT32 offset, UINT32 mem_mask)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ int reg = offset * 4;
+
+ /* VRAM Read */
+ if (reg >= 0x80 && reg < 0x100)
+ {
+ return state->m_gcu[chip].vram[state->m_gcu[chip].vram_read_address + ((reg/4) - 0x20)];
+ }
+
+ switch(reg)
+ {
+ case 0x78: /* GCU Status */
+ /* ppd checks bits 0x0041 of the upper halfword on interrupt */
+ return 0xffff0005;
+
+ default:
+ break;
+ }
+
+ return 0xffffffff;
+}
+
+static void GCU_w(running_machine &machine, int chip, UINT32 offset, UINT32 data, UINT32 mem_mask)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ int reg = offset * 4;
+
+ if (reg != 0x70 && chip == 0)
+ {
+ //printf("%s:gcu%d_w: %08X, %08X, %08X at %08X\n", machine.describe_context(), chip, data, offset, mem_mask);
+ //logerror("%s:gcu%d_w: %08X, %08X, %08X at %08X\n", cmachine->describe_context(), hip, data, offset, mem_mask);
+ }
+
+ switch(reg)
+ {
+ case 0x10: /* ??? */
+ /* IRQ clear/enable; ppd writes bit off then on in response to interrupt */
+ /* it enables bits 0x41, but 0x01 seems to be the one it cares about */
+ if (ACCESSING_BITS_16_31 && (data & 0x0001) == 0)
+ cputag_set_input_line(machine, "maincpu", INPUT_LINE_IRQ0, CLEAR_LINE);
+ break;
+
+ case 0x30:
+ //case 0x34:
+ //case 0x38:
+ //case 0x3c:
+ {
+ COMBINE_DATA( &state->m_gcu[chip].visible_area );
+ if (ACCESSING_BITS_0_15)
+ {
+ screen_device *screen = downcast<screen_device *>(machine.devicelist().find(SCREEN, chip));
+
+ if (screen != NULL)
+ {
+ rectangle visarea = screen->visible_area();
+ int width, height;
+
+ width = (state->m_gcu[chip].visible_area & 0xffff);
+ height = (state->m_gcu[chip].visible_area >> 16) & 0xffff;
+
+ visarea.max_x = width-1;
+ visarea.max_y = height-1;
+
+ screen->configure(visarea.max_x + 1, visarea.max_y + 1, visarea, screen->frame_period().attoseconds);
+ }
+ }
+ break;
+ }
+
+ case 0x40: /* ??? */
+ break;
+
+ //case 0x44: /* ??? */
+ // break;
+
+ case 0x5c: /* VRAM Read Address */
+ state->m_gcu[chip].vram_read_address = (data & 0xffffff) / 2;
+ break;
+
+ case 0x60: /* VRAM FIFO Write Address */
+ state->m_gcu[chip].vram_write_fifo_address = (data & 0xffffff) / 2;
+
+ // printf("gcu%d_w: %08X, %08X, %08X\n", chip, data, offset, mem_mask);
+ break;
+
+ case 0x68: /* Unknown */
+ {
+ break;
+ }
+
+ case 0x70: /* VRAM FIFO Write */
+ state->m_gcu[chip].vram[state->m_gcu[chip].vram_write_fifo_address] = data;
+ state->m_gcu[chip].vram_write_fifo_address++;
+ break;
+
+ default:
+ // printf("gcu%d_w: %08X, %08X, %08X\n", chip, data, offset, mem_mask);
+ break;
+ }
+}
+
+static READ32_HANDLER(gcu0_r)
+{
+ return GCU_r(space->machine(), 0, offset, mem_mask);
+}
+
+static WRITE32_HANDLER(gcu0_w)
+{
+ GCU_w(space->machine(), 0, offset, data, mem_mask);
+}
+
+static READ32_HANDLER(gcu1_r)
+{
+ return GCU_r(space->machine(), 1, offset, mem_mask);
+}
+
+static WRITE32_HANDLER(gcu1_w)
+{
+ GCU_w(space->machine(), 1, offset, data, mem_mask);
+}
+
+/*****************************************************************************/
+
+static READ32_HANDLER(input_r)
+{
+ UINT32 r = 0;
+
+ if (ACCESSING_BITS_24_31)
+ {
+ r |= (input_port_read(space->machine(), "IN0") & 0xff) << 24;
+ }
+ if (ACCESSING_BITS_8_15)
+ {
+ r |= (input_port_read(space->machine(), "IN1") & 0xff) << 8;
+ }
+ if (ACCESSING_BITS_0_7)
+ {
+ r |= (input_port_read(space->machine(), "IN2") & 0xff);
+ }
+
+ return r;
+}
+
+static READ32_HANDLER( sensor_r )
+{
+ if (offset == 0)
+ {
+ return input_port_read(space->machine(), "SENSOR1") | 0x01000100;
+ }
+ else
+ {
+ return input_port_read(space->machine(), "SENSOR2") | 0x01000100;
+ }
+}
+
+static READ32_HANDLER(flashram_r)
+{
+ firebeat_state *state = space->machine().driver_data<firebeat_state>();
+ UINT32 r = 0;
+ if (ACCESSING_BITS_24_31)
+ {
+ r |= (state->m_flash[0]->read((offset*4)+0) & 0xff) << 24;
+ }
+ if (ACCESSING_BITS_16_23)
+ {
+ r |= (state->m_flash[0]->read((offset*4)+1) & 0xff) << 16;
+ }
+ if (ACCESSING_BITS_8_15)
+ {
+ r |= (state->m_flash[0]->read((offset*4)+2) & 0xff) << 8;
+ }
+ if (ACCESSING_BITS_0_7)
+ {
+ r |= (state->m_flash[0]->read((offset*4)+3) & 0xff) << 0;
+ }
+ return r;
+}
+
+static WRITE32_HANDLER(flashram_w)
+{
+ firebeat_state *state = space->machine().driver_data<firebeat_state>();
+ if (ACCESSING_BITS_24_31)
+ {
+ state->m_flash[0]->write((offset*4)+0, (data >> 24) & 0xff);
+ }
+ if (ACCESSING_BITS_16_23)
+ {
+ state->m_flash[0]->write((offset*4)+1, (data >> 16) & 0xff);
+ }
+ if (ACCESSING_BITS_8_15)
+ {
+ state->m_flash[0]->write((offset*4)+2, (data >> 8) & 0xff);
+ }
+ if (ACCESSING_BITS_0_7)
+ {
+ state->m_flash[0]->write((offset*4)+3, (data >> 0) & 0xff);
+ }
+}
+
+static READ32_HANDLER(soundflash_r)
+{
+ firebeat_state *state = space->machine().driver_data<firebeat_state>();
+ UINT32 r = 0;
+ fujitsu_29f016a_device *chip;
+ if (offset >= 0 && offset < 0x200000/4)
+ {
+ chip = state->m_flash[1];
+ }
+ else
+ {
+ chip = state->m_flash[2];
+ }
+
+ offset &= 0x7ffff;
+
+ if (ACCESSING_BITS_24_31)
+ {
+ r |= (chip->read((offset*4)+0) & 0xff) << 24;
+ }
+ if (ACCESSING_BITS_16_23)
+ {
+ r |= (chip->read((offset*4)+1) & 0xff) << 16;
+ }
+ if (ACCESSING_BITS_8_15)
+ {
+ r |= (chip->read((offset*4)+2) & 0xff) << 8;
+ }
+ if (ACCESSING_BITS_0_7)
+ {
+ r |= (chip->read((offset*4)+3) & 0xff) << 0;
+ }
+ return r;
+}
+
+static WRITE32_HANDLER(soundflash_w)
+{
+ firebeat_state *state = space->machine().driver_data<firebeat_state>();
+ fujitsu_29f016a_device *chip;
+ if (offset >= 0 && offset < 0x200000/4)
+ {
+ chip = state->m_flash[1];
+ }
+ else
+ {
+ chip = state->m_flash[2];
+ }
+
+ offset &= 0x7ffff;
+
+ if (ACCESSING_BITS_24_31)
+ {
+ chip->write((offset*4)+0, (data >> 24) & 0xff);
+ }
+ if (ACCESSING_BITS_16_23)
+ {
+ chip->write((offset*4)+1, (data >> 16) & 0xff);
+ }
+ if (ACCESSING_BITS_8_15)
+ {
+ chip->write((offset*4)+2, (data >> 8) & 0xff);
+ }
+ if (ACCESSING_BITS_0_7)
+ {
+ chip->write((offset*4)+3, (data >> 0) & 0xff);
+ }
+}
+
+/*****************************************************************************/
+/* ATAPI Interface */
+
+#define BYTESWAP16(x) ((((x) >> 8) & 0xff) | (((x) << 8) & 0xff00))
+
+#if 1
+#define ATAPI_ENDIAN(x) (BYTESWAP16(x))
+#else
+#define ATAPI_ENDIAN(x) (x)
+#endif
+
+#define ATAPI_CYCLES_PER_SECTOR (32000) // plenty of time to allow DMA setup etc. BIOS requires this be at least 2000, individual games may vary.
+
+
+#define ATAPI_STAT_BSY 0x80
+#define ATAPI_STAT_DRDY 0x40
+#define ATAPI_STAT_DMARDDF 0x20
+#define ATAPI_STAT_SERVDSC 0x10
+#define ATAPI_STAT_DRQ 0x08
+#define ATAPI_STAT_CORR 0x04
+#define ATAPI_STAT_CHECK 0x01
+
+#define ATAPI_INTREASON_COMMAND 0x01
+#define ATAPI_INTREASON_IO 0x02
+#define ATAPI_INTREASON_RELEASE 0x04
+
+#define ATAPI_REG_DATA 0
+#define ATAPI_REG_ERRFEAT 1
+#define ATAPI_REG_INTREASON 2
+#define ATAPI_REG_SAMTAG 3
+#define ATAPI_REG_COUNTLOW 4
+#define ATAPI_REG_COUNTHIGH 5
+#define ATAPI_REG_DRIVESEL 6
+#define ATAPI_REG_CMDSTATUS 7
+
+
+static void atapi_cause_irq(running_machine &machine)
+{
+ cputag_set_input_line(machine, "maincpu", INPUT_LINE_IRQ4, ASSERT_LINE);
+}
+
+static void atapi_clear_irq(running_machine &machine)
+{
+ cputag_set_input_line(machine, "maincpu", INPUT_LINE_IRQ4, CLEAR_LINE);
+}
+
+static void atapi_exit(running_machine& machine)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ SCSIDeleteInstance(state->m_atapi_device_data[1]);
+ SCSIDeleteInstance(state->m_atapi_device_data[0]);
+}
+
+static void atapi_init(running_machine &machine)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ memset(state->m_atapi_regs, 0, sizeof(state->m_atapi_regs));
+
+ state->m_atapi_regs[ATAPI_REG_CMDSTATUS] = 0;
+ state->m_atapi_regs[ATAPI_REG_ERRFEAT] = 1;
+ state->m_atapi_regs[ATAPI_REG_COUNTLOW] = 0x14;
+ state->m_atapi_regs[ATAPI_REG_COUNTHIGH] = 0xeb;
+
+ state->m_atapi_data_ptr = 0;
+ state->m_atapi_cdata_wait = 0;
+
+ // allocate two SCSI CD-ROM devices
+ SCSIAllocInstance( machine, SCSI_DEVICE_CDROM, &state->m_atapi_device_data[0], "scsi0" );
+ // TODO: the slave drive can be either CD-ROM, DVD-ROM or HDD
+ SCSIAllocInstance( machine, SCSI_DEVICE_CDROM, &state->m_atapi_device_data[1], "scsi1" );
+ machine.add_notifier(MACHINE_NOTIFY_EXIT, machine_notify_delegate(FUNC(atapi_exit), &machine));
+}
+
+static void atapi_reset(running_machine &machine)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ logerror("ATAPI reset\n");
+
+ state->m_atapi_regs[ATAPI_REG_CMDSTATUS] = 0;
+ state->m_atapi_regs[ATAPI_REG_ERRFEAT] = 1;
+ state->m_atapi_regs[ATAPI_REG_COUNTLOW] = 0x14;
+ state->m_atapi_regs[ATAPI_REG_COUNTHIGH] = 0xeb;
+
+ state->m_atapi_data_ptr = 0;
+ state->m_atapi_cdata_wait = 0;
+}
+
+
+
+static UINT16 atapi_command_reg_r(running_machine &machine, int reg)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ int i, data;
+
+// printf("ATAPI: Command reg read %d\n", reg);
+
+ if (reg == ATAPI_REG_DATA)
+ {
+ // assert IRQ and drop DRQ
+ if (state->m_atapi_data_ptr == 0)
+ {
+ //printf("ATAPI: dropping DRQ\n");
+ atapi_cause_irq(machine);
+ state->m_atapi_regs[ATAPI_REG_CMDSTATUS] = 0;
+
+ // get the data from the device
+ SCSIReadData( state->m_atapi_device_data[state->m_atapi_drivesel], state->m_temp_data, state->m_atapi_xferlen );
+
+ // fix it up in an endian-safe way
+ for (i = 0; i < state->m_atapi_xferlen; i += 2)
+ {
+ state->m_atapi_data[i/2] = state->m_temp_data[i+0] | state->m_temp_data[i+1]<<8;
+ }
+ }
+
+ data = state->m_atapi_data[state->m_atapi_data_ptr];
+// printf("ATAPI: %d, packet read = %04x\n", state->m_atapi_data_ptr, state->m_atapi_data[state->m_atapi_data_ptr]);
+ state->m_atapi_data_ptr++;
+
+ if (state->m_atapi_xfermod && state->m_atapi_data_ptr == (state->m_atapi_xferlen/2))
+ {
+ //printf("ATAPI: DRQ interrupt\n");
+ atapi_cause_irq(machine);
+ state->m_atapi_regs[ATAPI_REG_CMDSTATUS] |= ATAPI_STAT_DRQ;
+ state->m_atapi_data_ptr = 0;
+
+ if (state->m_atapi_xfermod > 63488)
+ {
+ state->m_atapi_xfermod = state->m_atapi_xfermod - 63488;
+ state->m_atapi_xferlen = 63488;
+ }
+ else
+ {
+ state->m_atapi_xferlen = state->m_atapi_xfermod;
+ state->m_atapi_xfermod = 0;
+ }
+
+ //printf("ATAPI Transfer: %d, %d, %d\n", atapi_transfer_length, state->m_atapi_xfermod, state->m_atapi_xferlen);
+
+ state->m_atapi_regs[ATAPI_REG_COUNTLOW] = state->m_atapi_xferlen & 0xff;
+ state->m_atapi_regs[ATAPI_REG_COUNTHIGH] = (state->m_atapi_xferlen>>8)&0xff;
+ }
+ return data;
+ }
+ else
+ {
+ if (reg == ATAPI_REG_CMDSTATUS)
+ atapi_clear_irq(machine);
+ return state->m_atapi_regs[reg];
+ }
+}
+
+static void atapi_command_reg_w(running_machine &machine, int reg, UINT16 data)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ int i;
+
+ if (reg == ATAPI_REG_DATA)
+ {
+// printf("%s:ATAPI: packet write %04x\n", device->machine().describe_context(), data);
+ state->m_atapi_data[state->m_atapi_data_ptr] = data;
+ state->m_atapi_data_ptr++;
+
+ if (state->m_atapi_cdata_wait)
+ {
+// printf("ATAPI: waiting, ptr %d wait %d\n", state->m_atapi_data_ptr, state->m_atapi_cdata_wait);
+ if (state->m_atapi_data_ptr == state->m_atapi_cdata_wait)
+ {
+ // decompose SCSI packet into proper byte order
+ for (i = 0; i < state->m_atapi_cdata_wait; i += 2)
+ {
+ state->m_atapi_scsi_packet[i] = state->m_atapi_data[i/2]&0xff;
+ state->m_atapi_scsi_packet[i+1] = state->m_atapi_data[i/2]>>8;
+ }
+
+ // send it to the device
+ SCSIWriteData( state->m_atapi_device_data[state->m_atapi_drivesel], state->m_atapi_scsi_packet, state->m_atapi_cdata_wait );
+
+ // assert IRQ
+ atapi_cause_irq(machine);
+
+ // not sure here, but clear DRQ at least?
+ state->m_atapi_regs[ATAPI_REG_CMDSTATUS] = 0;
+ }
+ }
+
+ if ((!state->m_atapi_cdata_wait) && (state->m_atapi_data_ptr == 6))
+ {
+ int phase;
+
+ // reset data pointer for reading SCSI results
+ state->m_atapi_data_ptr = 0;
+
+ state->m_atapi_regs[ATAPI_REG_CMDSTATUS] |= ATAPI_STAT_BSY;
+
+ // assert IRQ
+ atapi_cause_irq(machine);
+
+ // decompose SCSI packet into proper byte order
+ for (i = 0; i < 16; i += 2)
+ {
+ state->m_atapi_scsi_packet[i+0] = state->m_atapi_data[i/2]&0xff;
+ state->m_atapi_scsi_packet[i+1] = state->m_atapi_data[i/2]>>8;
+ }
+
+ // send it to the SCSI device
+ SCSISetCommand( state->m_atapi_device_data[state->m_atapi_drivesel], state->m_atapi_scsi_packet, 12 );
+ SCSIExecCommand( state->m_atapi_device_data[state->m_atapi_drivesel], &state->m_atapi_xferlen );
+ SCSIGetPhase( state->m_atapi_device_data[state->m_atapi_drivesel], &phase );
+
+ if (state->m_atapi_xferlen != -1)
+ {
+ logerror("ATAPI: SCSI command %02x returned %d bytes from the device\n", state->m_atapi_data[0]&0xff, state->m_atapi_xferlen);
+
+ // store the returned command length in the ATAPI regs, splitting into
+ // multiple transfers if necessary
+
+ state->m_atapi_xfermod = 0;
+ if (state->m_atapi_xferlen > 63488)
+ {
+ state->m_atapi_xfermod = state->m_atapi_xferlen - 63488;
+ state->m_atapi_xferlen = 63488;
+ }
+
+// printf("ATAPI Transfer: %d, %d\n", state->m_atapi_xfermod, state->m_atapi_xferlen);
+
+ state->m_atapi_regs[ATAPI_REG_COUNTLOW] = state->m_atapi_xferlen & 0xff;
+ state->m_atapi_regs[ATAPI_REG_COUNTHIGH] = (state->m_atapi_xferlen>>8)&0xff;
+
+ switch( phase )
+ {
+ case SCSI_PHASE_DATAOUT:
+ state->m_atapi_data_ptr = 0;
+ state->m_atapi_cdata_wait = state->m_atapi_xferlen;
+ logerror("ATAPI: Waiting for %x bytes of data\n", state->m_atapi_cdata_wait);
+ break;
+ }
+
+ // perform special ATAPI processing of certain commands
+ switch (state->m_atapi_data[0]&0xff)
+ {
+ case 0xa8: // READ (12)
+ // indicate data ready: set DRQ and DMA ready, and IO in INTREASON
+ state->m_atapi_regs[ATAPI_REG_CMDSTATUS] = ATAPI_STAT_DRQ | ATAPI_STAT_SERVDSC;
+ state->m_atapi_regs[ATAPI_REG_INTREASON] = ATAPI_INTREASON_IO;
+
+ fatalerror("ATAPI: DMA read command attempted\n");
+ break;
+
+ case 0x00: // BUS RESET / TEST UNIT READY
+ case 0xbb: // SET CD SPEED
+ case 0xa5: // PLAY AUDIO
+ case 0x1b:
+ case 0x4e:
+ state->m_atapi_regs[ATAPI_REG_CMDSTATUS] = 0;
+ break;
+ }
+ }
+ else
+ {
+// printf("ATAPI: SCSI device returned error!\n");
+
+ state->m_atapi_regs[ATAPI_REG_CMDSTATUS] = ATAPI_STAT_DRQ | ATAPI_STAT_CHECK;
+ state->m_atapi_regs[ATAPI_REG_ERRFEAT] = 0x50; // sense key = ILLEGAL REQUEST
+ state->m_atapi_regs[ATAPI_REG_COUNTLOW] = 0;
+ state->m_atapi_regs[ATAPI_REG_COUNTHIGH] = 0;
+ }
+ }
+ }
+ else
+ {
+ data &= 0xff;
+ state->m_atapi_regs[reg] = data;
+// printf("ATAPI: Command reg %d = %02X\n", reg, data);
+
+ switch(reg)
+ {
+ case ATAPI_REG_DRIVESEL:
+ state->m_atapi_drivesel = (data >> 4) & 0x1;
+ break;
+
+ case ATAPI_REG_CMDSTATUS:
+// printf("ATAPI: Issued command %02X\n", data);
+
+ switch(data)
+ {
+ case 0x00: /* NOP */
+ break;
+
+ case 0x08: /* ATAPI Soft Reset */
+ atapi_reset(machine);
+ break;
+
+ case 0xa0: /* ATAPI Packet */
+ state->m_atapi_regs[ATAPI_REG_CMDSTATUS] = ATAPI_STAT_BSY | ATAPI_STAT_DRQ;
+ state->m_atapi_regs[ATAPI_REG_INTREASON] = ATAPI_INTREASON_COMMAND;
+
+ state->m_atapi_data_ptr = 0;
+ state->m_atapi_cdata_wait = 0;
+ break;
+
+ default:
+ fatalerror("ATAPI: Unknown ATA command %02X\n", data);
+ }
+ break;
+ }
+ }
+}
+
+static UINT16 atapi_control_reg_r(running_machine &machine, int reg)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ UINT16 value;
+ switch(reg)
+ {
+ case 0x6:
+ {
+ value = state->m_atapi_regs[ATAPI_REG_CMDSTATUS];
+ if (state->m_atapi_regs[ATAPI_REG_CMDSTATUS] & ATAPI_STAT_BSY)
+ {
+ state->m_atapi_regs[ATAPI_REG_CMDSTATUS] ^= ATAPI_STAT_BSY;
+ }
+ return value;
+ }
+
+ default:
+ fatalerror("ATAPI: Read control reg %d\n", reg);
+ break;
+ }
+
+ return 0;
+}
+
+static void atapi_control_reg_w(running_machine &machine, int reg, UINT16 data)
+{
+ switch(reg)
+ {
+ case 0x06: /* Device Control */
+ {
+ if (data & 0x4)
+ {
+ atapi_reset(machine);
+ }
+ break;
+ }
+
+ default:
+ fatalerror("ATAPI: Control reg %d = %02X\n", reg, data);
+ }
+}
+
+
+
+static READ32_HANDLER( atapi_command_r )
+{
+ UINT16 r;
+// printf("atapi_command_r: %08X, %08X\n", offset, mem_mask);
+ if (ACCESSING_BITS_16_31)
+ {
+ r = atapi_command_reg_r(space->machine(), offset*2);
+ return ATAPI_ENDIAN(r) << 16;
+ }
+ else
+ {
+ r = atapi_command_reg_r(space->machine(), (offset*2) + 1);
+ return ATAPI_ENDIAN(r) << 0;
+ }
+}
+
+static WRITE32_HANDLER( atapi_command_w )
+{
+// printf("atapi_command_w: %08X, %08X, %08X\n", data, offset, mem_mask);
+
+ if (ACCESSING_BITS_16_31)
+ {
+ atapi_command_reg_w(space->machine(), offset*2, ATAPI_ENDIAN((data >> 16) & 0xffff));
+ }
+ else
+ {
+ atapi_command_reg_w(space->machine(), (offset*2) + 1, ATAPI_ENDIAN((data >> 0) & 0xffff));
+ }
+}
+
+
+static READ32_HANDLER( atapi_control_r )
+{
+ UINT16 r;
+// printf("atapi_control_r: %08X, %08X\n", offset, mem_mask);
+
+ if (ACCESSING_BITS_16_31)
+ {
+ r = atapi_control_reg_r(space->machine(), offset*2);
+ return ATAPI_ENDIAN(r) << 16;
+ }
+ else
+ {
+ r = atapi_control_reg_r(space->machine(), (offset*2) + 1);
+ return ATAPI_ENDIAN(r) << 0;
+ }
+}
+
+static WRITE32_HANDLER( atapi_control_w )
+{
+ if (ACCESSING_BITS_16_31)
+ {
+ atapi_control_reg_w(space->machine(), offset*2, ATAPI_ENDIAN(data >> 16) & 0xff);
+ }
+ else
+ {
+ atapi_control_reg_w(space->machine(), (offset*2) + 1, ATAPI_ENDIAN(data >> 0) & 0xff);
+ }
+}
+
+
+/*****************************************************************************/
+
+static READ32_HANDLER( comm_uart_r )
+{
+ UINT32 r = 0;
+
+ if (ACCESSING_BITS_24_31)
+ {
+ r |= pc16552d_0_r(space, (offset*4)+0) << 24;
+ }
+ if (ACCESSING_BITS_16_23)
+ {
+ r |= pc16552d_0_r(space, (offset*4)+1) << 16;
+ }
+ if (ACCESSING_BITS_8_15)
+ {
+ r |= pc16552d_0_r(space, (offset*4)+2) << 8;
+ }
+ if (ACCESSING_BITS_0_7)
+ {
+ r |= pc16552d_0_r(space, (offset*4)+3) << 0;
+ }
+
+ return r;
+}
+
+static WRITE32_HANDLER( comm_uart_w )
+{
+ if (ACCESSING_BITS_24_31)
+ {
+ pc16552d_0_w(space, (offset*4)+0, (data >> 24) & 0xff);
+ }
+ if (ACCESSING_BITS_16_23)
+ {
+ pc16552d_0_w(space, (offset*4)+1, (data >> 16) & 0xff);
+ }
+ if (ACCESSING_BITS_8_15)
+ {
+ pc16552d_0_w(space, (offset*4)+2, (data >> 8) & 0xff);
+ }
+ if (ACCESSING_BITS_0_7)
+ {
+ pc16552d_0_w(space, (offset*4)+3, (data >> 0) & 0xff);
+ }
+}
+
+static void comm_uart_irq_callback(running_machine &machine, int channel, int value)
+{
+ // TODO
+ //cputag_set_input_line(machine, "maincpu", INPUT_LINE_IRQ2, ASSERT_LINE);
+}
+
+/*****************************************************************************/
+
+static const int cab_data[2] = { 0x0, 0x8 };
+static const int kbm_cab_data[2] = { 0x2, 0x8 };
+static const int ppd_cab_data[2] = { 0x1, 0x9 };
+
+static READ32_HANDLER( cabinet_r )
+{
+ firebeat_state *state = space->machine().driver_data<firebeat_state>();
+ UINT32 r = 0;
+
+// printf("cabinet_r: %08X, %08X\n", offset, mem_mask);
+
+ switch (offset)
+ {
+ case 0:
+ {
+ r = state->m_cur_cab_data[state->m_cab_data_ptr & 1] << 28;
+ state->m_cab_data_ptr++;
+ return r;
+ }
+ case 2: return 0x00000000;
+ case 4: return 0x00000000;
+ }
+
+ return 0;
+}
+
+/*****************************************************************************/
+
+static READ32_HANDLER( keyboard_wheel_r )
+{
+ if (offset == 0) // Keyboard Wheel (P1)
+ {
+ return input_port_read(space->machine(), "WHEEL_P1") << 24;
+ }
+ else if (offset == 2) // Keyboard Wheel (P2)
+ {
+ return input_port_read(space->machine(), "WHEEL_P2") << 24;
+ }
+
+ return 0;
+}
+
+static READ32_HANDLER( midi_uart_r )
+{
+ UINT32 r = 0;
+
+ if (ACCESSING_BITS_24_31)
+ {
+ r |= pc16552d_1_r(space, offset >> 6) << 24;
+ }
+
+ return r;
+}
+
+static WRITE32_HANDLER( midi_uart_w )
+{
+ if (ACCESSING_BITS_24_31)
+ {
+ pc16552d_1_w(space, offset >> 6, (data >> 24) & 0xff);
+ }
+}
+
+static void midi_uart_irq_callback(running_machine &machine, int channel, int value)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ if (channel == 0)
+ {
+ if ((state->m_extend_board_irq_enable & 0x02) == 0 && value != CLEAR_LINE)
+ {
+ state->m_extend_board_irq_active |= 0x02;
+ cputag_set_input_line(machine, "maincpu", INPUT_LINE_IRQ1, ASSERT_LINE);
+ }
+ else
+ cputag_set_input_line(machine, "maincpu", INPUT_LINE_IRQ1, CLEAR_LINE);
+ }
+ else
+ {
+ if ((state->m_extend_board_irq_enable & 0x01) == 0 && value != CLEAR_LINE)
+ {
+ state->m_extend_board_irq_active |= 0x01;
+ cputag_set_input_line(machine, "maincpu", INPUT_LINE_IRQ1, ASSERT_LINE);
+ }
+ else
+ cputag_set_input_line(machine, "maincpu", INPUT_LINE_IRQ1, CLEAR_LINE);
+ }
+}
+
+
+static const int keyboard_notes[24] =
+{
+ 0x3c, // C1
+ 0x3d, // C1#
+ 0x3e, // D1
+ 0x3f, // D1#
+ 0x40, // E1
+ 0x41, // F1
+ 0x42, // F1#
+ 0x43, // G1
+ 0x44, // G1#
+ 0x45, // A1
+ 0x46, // A1#
+ 0x47, // B1
+ 0x48, // C2
+ 0x49, // C2#
+ 0x4a, // D2
+ 0x4b, // D2#
+ 0x4c, // E2
+ 0x4d, // F2
+ 0x4e, // F2#
+ 0x4f, // G2
+ 0x50, // G2#
+ 0x51, // A2
+ 0x52, // A2#
+ 0x53, // B2
+};
+
+static TIMER_CALLBACK( keyboard_timer_callback )
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ static const int kb_uart_channel[2] = { 1, 0 };
+ static const char *const keynames[] = { "KEYBOARD_P1", "KEYBOARD_P2" };
+ int keyboard;
+ int i;
+
+ for (keyboard=0; keyboard < 2; keyboard++)
+ {
+ UINT32 kbstate = input_port_read(machine, keynames[keyboard]);
+ int uart_channel = kb_uart_channel[keyboard];
+
+ if (kbstate != state->m_keyboard_state[keyboard])
+ {
+ for (i=0; i < 24; i++)
+ {
+ int kbnote = keyboard_notes[i];
+
+ if ((state->m_keyboard_state[keyboard] & (1 << i)) != 0 && (kbstate & (1 << i)) == 0)
+ {
+ // key was on, now off -> send Note Off message
+ pc16552d_rx_data(machine, 1, uart_channel, 0x80);
+ pc16552d_rx_data(machine, 1, uart_channel, kbnote);
+ pc16552d_rx_data(machine, 1, uart_channel, 0x7f);
+ }
+ else if ((state->m_keyboard_state[keyboard] & (1 << i)) == 0 && (kbstate & (1 << i)) != 0)
+ {
+ // key was off, now on -> send Note On message
+ pc16552d_rx_data(machine, 1, uart_channel, 0x90);
+ pc16552d_rx_data(machine, 1, uart_channel, kbnote);
+ pc16552d_rx_data(machine, 1, uart_channel, 0x7f);
+ }
+ }
+ }
+ else
+ {
+ // no messages, send Active Sense message instead
+ pc16552d_rx_data(machine, 1, uart_channel, 0xfe);
+ }
+
+ state->m_keyboard_state[keyboard] = kbstate;
+ }
+}
+
+// Extend board IRQs
+// 0x01: MIDI UART channel 2
+// 0x02: MIDI UART channel 1
+// 0x04: ?
+// 0x08: ?
+// 0x10: ?
+// 0x20: ?
+
+static READ32_HANDLER( extend_board_irq_r)
+{
+ firebeat_state *state = space->machine().driver_data<firebeat_state>();
+ UINT32 r = 0;
+
+ if (ACCESSING_BITS_24_31)
+ {
+ r |= (~state->m_extend_board_irq_active) << 24;
+ }
+
+ return r;
+}
+
+static WRITE32_HANDLER( extend_board_irq_w )
+{
+ firebeat_state *state = space->machine().driver_data<firebeat_state>();
+// printf("extend_board_irq_w: %08X, %08X, %08X\n", data, offset, mem_mask);
+
+ if (ACCESSING_BITS_24_31)
+ {
+ state->m_extend_board_irq_active &= ~((data >> 24) & 0xff);
+
+ state->m_extend_board_irq_enable = (data >> 24) & 0xff;
+ }
+}
+
+/*****************************************************************************/
+
+static WRITE32_HANDLER( lamp_output_w )
+{
+ // -------- -------- -------- xxxxxxxx Status LEDs (active low)
+ if (ACCESSING_BITS_0_7)
+ {
+ output_set_value("status_led_0", (data & 0x01) ? 0 : 1);
+ output_set_value("status_led_1", (data & 0x02) ? 0 : 1);
+ output_set_value("status_led_2", (data & 0x04) ? 0 : 1);
+ output_set_value("status_led_3", (data & 0x08) ? 0 : 1);
+ output_set_value("status_led_4", (data & 0x10) ? 0 : 1);
+ output_set_value("status_led_5", (data & 0x20) ? 0 : 1);
+ output_set_value("status_led_6", (data & 0x40) ? 0 : 1);
+ output_set_value("status_led_7", (data & 0x80) ? 0 : 1);
+ }
+
+// printf("lamp_output_w: %08X, %08X, %08X\n", data, offset, mem_mask);
+}
+
+static WRITE32_HANDLER( lamp_output_kbm_w )
+{
+ lamp_output_w(space, offset, data, mem_mask);
+
+ if (ACCESSING_BITS_24_31)
+ {
+ output_set_value("door_lamp", (data & 0x10000000) ? 1 : 0);
+ output_set_value("start1p", (data & 0x01000000) ? 1 : 0);
+ output_set_value("start2p", (data & 0x02000000) ? 1 : 0);
+ }
+ if (ACCESSING_BITS_8_15)
+ {
+ output_set_value("lamp1", (data & 0x00000100) ? 1 : 0);
+ output_set_value("lamp2", (data & 0x00000200) ? 1 : 0);
+ output_set_value("lamp3", (data & 0x00000400) ? 1 : 0);
+ output_set_value("neon", (data & 0x00000800) ? 1 : 0);
+ }
+}
+
+static WRITE32_HANDLER( lamp_output_ppp_w )
+{
+ lamp_output_w(space, offset, data, mem_mask);
+
+ // ParaParaParadise lamps (active high)
+ // 0x00000100 Left
+ // 0x00000200 Right
+ // 0x00000400 Door Lamp
+ // 0x00000800 OK
+ // 0x00008000 Slim
+ // 0x01000000 Stage LED 0
+ // 0x02000000 Stage LED 1
+ // 0x04000000 Stage LED 2
+ // 0x08000000 Stage LED 3
+ // 0x00010000 Stage LED 4
+ // 0x00020000 Stage LED 5
+ // 0x00040000 Stage LED 6
+ // 0x00080000 Stage LED 7
+ if (ACCESSING_BITS_8_15)
+ {
+ output_set_value("left", (data & 0x00000100) ? 1 : 0);
+ output_set_value("right", (data & 0x00000200) ? 1 : 0);
+ output_set_value("door_lamp", (data & 0x00000400) ? 1 : 0);
+ output_set_value("ok", (data & 0x00000800) ? 1 : 0);
+ output_set_value("slim", (data & 0x00008000) ? 1 : 0);
+ }
+ if (ACCESSING_BITS_24_31)
+ {
+ output_set_value("stage_led_0", (data & 0x01000000) ? 1 : 0);
+ output_set_value("stage_led_1", (data & 0x02000000) ? 1 : 0);
+ output_set_value("stage_led_2", (data & 0x04000000) ? 1 : 0);
+ output_set_value("stage_led_3", (data & 0x08000000) ? 1 : 0);
+ }
+ if (ACCESSING_BITS_16_23)
+ {
+ output_set_value("stage_led_4", (data & 0x00010000) ? 1 : 0);
+ output_set_value("stage_led_5", (data & 0x00020000) ? 1 : 0);
+ output_set_value("stage_led_6", (data & 0x00040000) ? 1 : 0);
+ output_set_value("stage_led_7", (data & 0x00080000) ? 1 : 0);
+ }
+}
+
+static WRITE32_HANDLER( lamp_output2_w )
+{
+// printf("lamp_output2_w: %08X, %08X, %08X\n", data, offset, mem_mask);
+}
+
+static WRITE32_HANDLER( lamp_output2_ppp_w )
+{
+ lamp_output2_w(space, offset, data, mem_mask);
+
+ // ParaParaParadise lamps (active high)
+ // 0x00010000 Top LED 0
+ // 0x00020000 Top LED 1
+ // 0x00040000 Top LED 2
+ // 0x00080000 Top LED 3
+ // 0x00000001 Top LED 4
+ // 0x00000002 Top LED 5
+ // 0x00000004 Top LED 6
+ // 0x00000008 Top LED 7
+ if (ACCESSING_BITS_16_23)
+ {
+ output_set_value("top_led_0", (data & 0x00010000) ? 1 : 0);
+ output_set_value("top_led_1", (data & 0x00020000) ? 1 : 0);
+ output_set_value("top_led_2", (data & 0x00040000) ? 1 : 0);
+ output_set_value("top_led_3", (data & 0x00080000) ? 1 : 0);
+ }
+ if (ACCESSING_BITS_0_7)
+ {
+ output_set_value("top_led_4", (data & 0x00000001) ? 1 : 0);
+ output_set_value("top_led_5", (data & 0x00000002) ? 1 : 0);
+ output_set_value("top_led_6", (data & 0x00000004) ? 1 : 0);
+ output_set_value("top_led_7", (data & 0x00000008) ? 1 : 0);
+ }
+}
+
+static WRITE32_HANDLER( lamp_output3_w )
+{
+// printf("lamp_output3_w: %08X, %08X, %08X\n", data, offset, mem_mask);
+}
+
+static WRITE32_HANDLER( lamp_output3_ppp_w )
+{
+ lamp_output3_w(space, offset, data, mem_mask);
+
+ // ParaParaParadise lamps (active high)
+ // 0x00010000 Lamp 0
+ // 0x00040000 Lamp 1
+ // 0x00100000 Lamp 2
+ // 0x00400000 Lamp 3
+ if (ACCESSING_BITS_16_23)
+ {
+ output_set_value("lamp_0", (data & 0x00010000) ? 1 : 0);
+ output_set_value("lamp_1", (data & 0x00040000) ? 1 : 0);
+ output_set_value("lamp_2", (data & 0x00100000) ? 1 : 0);
+ output_set_value("lamp_3", (data & 0x00400000) ? 1 : 0);
+ }
+}
+
+/*****************************************************************************/
+
+
+static READ32_HANDLER(ppc_spu_share_r)
+{
+ firebeat_state *state = space->machine().driver_data<firebeat_state>();
+ UINT32 r = 0;
+
+ if (ACCESSING_BITS_24_31)
+ {
+ r |= state->m_spu_shared_ram[(offset * 4) + 0] << 24;
+ }
+ if (ACCESSING_BITS_16_23)
+ {
+ r |= state->m_spu_shared_ram[(offset * 4) + 1] << 16;
+ }
+ if (ACCESSING_BITS_8_15)
+ {
+ r |= state->m_spu_shared_ram[(offset * 4) + 2] << 8;
+ }
+ if (ACCESSING_BITS_0_7)
+ {
+ r |= state->m_spu_shared_ram[(offset * 4) + 3] << 0;
+ }
+
+ return r;
+}
+
+static WRITE32_HANDLER(ppc_spu_share_w)
+{
+ firebeat_state *state = space->machine().driver_data<firebeat_state>();
+ if (ACCESSING_BITS_24_31)
+ {
+ state->m_spu_shared_ram[(offset * 4) + 0] = (data >> 24) & 0xff;
+ }
+ if (ACCESSING_BITS_16_23)
+ {
+ state->m_spu_shared_ram[(offset * 4) + 1] = (data >> 16) & 0xff;
+ }
+ if (ACCESSING_BITS_8_15)
+ {
+ state->m_spu_shared_ram[(offset * 4) + 2] = (data >> 8) & 0xff;
+ }
+ if (ACCESSING_BITS_0_7)
+ {
+ state->m_spu_shared_ram[(offset * 4) + 3] = (data >> 0) & 0xff;
+ }
+}
+
+#ifdef UNUSED_FUNCTION
+static READ16_HANDLER(m68k_spu_share_r)
+{
+ firebeat_state *state = space->machine().driver_data<firebeat_state>();
+ return state->m_spu_shared_ram[offset] << 8;
+}
+
+static WRITE16_HANDLER(m68k_spu_share_w)
+{
+ firebeat_state *state = space->machine().driver_data<firebeat_state>();
+ state->m_spu_shared_ram[offset] = (data >> 8) & 0xff;
+}
+#endif
+
+static READ16_HANDLER(spu_unk_r)
+{
+ return 0xffff;
+}
+
+/*****************************************************************************/
+
+static MACHINE_START( firebeat )
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ /* set conservative DRC options */
+ ppcdrc_set_options(machine.device("maincpu"), PPCDRC_COMPATIBLE_OPTIONS);
+
+ /* configure fast RAM regions for DRC */
+ ppcdrc_add_fastram(machine.device("maincpu"), 0x00000000, 0x01ffffff, FALSE, state->m_work_ram);
+
+ state->m_flash[0] = machine.device<fujitsu_29f016a_device>("flash0");
+ state->m_flash[1] = machine.device<fujitsu_29f016a_device>("flash1");
+ state->m_flash[2] = machine.device<fujitsu_29f016a_device>("flash2");
+}
+
+static ADDRESS_MAP_START( firebeat_map, AS_PROGRAM, 32 )
+ AM_RANGE(0x00000000, 0x01ffffff) AM_RAM AM_BASE_MEMBER(firebeat_state, m_work_ram)
+ AM_RANGE(0x70000000, 0x70000fff) AM_READWRITE(midi_uart_r, midi_uart_w)
+ AM_RANGE(0x70006000, 0x70006003) AM_WRITE(extend_board_irq_w)
+ AM_RANGE(0x70008000, 0x7000800f) AM_READ(keyboard_wheel_r)
+ AM_RANGE(0x7000a000, 0x7000a003) AM_READ(extend_board_irq_r)
+ AM_RANGE(0x74000000, 0x740003ff) AM_READWRITE(ppc_spu_share_r, ppc_spu_share_w) // SPU shared RAM
+ AM_RANGE(0x7d000200, 0x7d00021f) AM_READ(cabinet_r)
+ AM_RANGE(0x7d000340, 0x7d000347) AM_READ(sensor_r)
+ AM_RANGE(0x7d000400, 0x7d000403) AM_DEVREADWRITE8("ymz", ymz280b_r, ymz280b_w, 0xffff0000)
+ AM_RANGE(0x7d000800, 0x7d000803) AM_READ(input_r)
+ AM_RANGE(0x7d400000, 0x7d5fffff) AM_READWRITE(flashram_r, flashram_w)
+ AM_RANGE(0x7d800000, 0x7dbfffff) AM_READWRITE(soundflash_r, soundflash_w)
+ AM_RANGE(0x7dc00000, 0x7dc0000f) AM_READWRITE(comm_uart_r, comm_uart_w)
+ AM_RANGE(0x7e000000, 0x7e00003f) AM_DEVREADWRITE8("rtc", rtc65271_rtc_r, rtc65271_rtc_w, 0xffffffff)
+ AM_RANGE(0x7e000100, 0x7e00013f) AM_DEVREADWRITE8("rtc", rtc65271_xram_r, rtc65271_xram_w, 0xffffffff)
+ AM_RANGE(0x7e800000, 0x7e8000ff) AM_READWRITE(gcu0_r, gcu0_w)
+ AM_RANGE(0x7e800100, 0x7e8001ff) AM_READWRITE(gcu1_r, gcu1_w)
+ AM_RANGE(0x7fe00000, 0x7fe0000f) AM_READWRITE(atapi_command_r, atapi_command_w)
+ AM_RANGE(0x7fe80000, 0x7fe8000f) AM_READWRITE(atapi_control_r, atapi_control_w)
+ AM_RANGE(0x7ff80000, 0x7fffffff) AM_ROM AM_REGION("user1", 0) /* System BIOS */
+ADDRESS_MAP_END
+
+static ADDRESS_MAP_START( spu_map, AS_PROGRAM, 16 )
+ AM_RANGE(0x000000, 0x07ffff) AM_ROM
+ AM_RANGE(0x100000, 0x13ffff) AM_RAM
+ AM_RANGE(0x340000, 0x34000f) AM_READ(spu_unk_r)
+ADDRESS_MAP_END
+
+/*****************************************************************************/
+
+static READ8_DEVICE_HANDLER( soundram_r )
+{
+ firebeat_state *state = device->machine().driver_data<firebeat_state>();
+ if (offset >= 0 && offset < 0x200000)
+ {
+ return state->m_flash[1]->read(offset & 0x1fffff);
+ }
+ else if (offset >= 0x200000 && offset < 0x400000)
+ {
+ return state->m_flash[2]->read(offset & 0x1fffff);
+ }
+ return 0;
+}
+
+static void sound_irq_callback(device_t *device, int state)
+{
+}
+
+static const ymz280b_interface ymz280b_intf =
+{
+ sound_irq_callback, // irq
+ DEVCB_HANDLER(soundram_r)
+};
+
+static INPUT_PORTS_START(ppp)
+ PORT_START("IN0")
+ PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_BUTTON1 ) // Left
+ PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_BUTTON2 ) // Right
+ PORT_SERVICE_NO_TOGGLE( 0x04, IP_ACTIVE_LOW) // Test
+ PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_SERVICE ) PORT_NAME("Service") PORT_CODE(KEYCODE_7) // Service
+ PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_COIN1 ) // Coin
+ PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_START1 ) // Start / Ok
+ PORT_BIT( 0xc0, IP_ACTIVE_HIGH, IPT_UNUSED )
+
+ PORT_START("IN1")
+ PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNKNOWN )
+
+ PORT_START("IN2")
+ PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNKNOWN ) /* Dip switches */
+
+ // ParaParaParadise has 24 sensors, grouped into groups of 3 for each sensor bar
+ // Sensors 15...23 are only used by the Korean version of PPP, which has 8 sensor bars
+
+ PORT_START("SENSOR1")
+ PORT_BIT( 0x00070000, IP_ACTIVE_HIGH, IPT_BUTTON3 ) // Sensor 0, 1, 2 (Sensor bar 1)
+ PORT_BIT( 0x00380000, IP_ACTIVE_HIGH, IPT_BUTTON4 ) // Sensor 3, 4, 5 (Sensor bar 2)
+ PORT_BIT( 0x00c00001, IP_ACTIVE_HIGH, IPT_BUTTON5 ) // Sensor 6, 7, 8 (Sensor bar 3)
+ PORT_BIT( 0x0000000e, IP_ACTIVE_HIGH, IPT_BUTTON6 ) // Sensor 9, 10,11 (Sensor bar 4)
+
+ PORT_START("SENSOR2")
+ PORT_BIT( 0x00070000, IP_ACTIVE_HIGH, IPT_BUTTON7 ) // Sensor 12,13,14 (Sensor bar 5)
+ PORT_BIT( 0x00380000, IP_ACTIVE_HIGH, IPT_BUTTON8 ) // Sensor 15,16,17 (Sensor bar 6) (unused by PPP)
+ PORT_BIT( 0x00c00001, IP_ACTIVE_HIGH, IPT_BUTTON9 ) // Sensor 18,19,20 (Sensor bar 7) (unused by PPP)
+ PORT_BIT( 0x0000000e, IP_ACTIVE_HIGH, IPT_BUTTON10 ) // Sensor 21,22,23 (Sensor bar 8) (unused by PPP)
+
+INPUT_PORTS_END
+
+static INPUT_PORTS_START(kbm)
+ PORT_START("IN0")
+ PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_START1 ) // Start P1
+ PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_START2 ) // Start P2
+ PORT_SERVICE_NO_TOGGLE( 0x04, IP_ACTIVE_LOW) // Test
+ PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_SERVICE ) PORT_NAME("Service") PORT_CODE(KEYCODE_7) // Service
+ PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_COIN1 ) // Coin
+ PORT_BIT( 0xe0, IP_ACTIVE_LOW, IPT_UNUSED )
+
+ PORT_START("IN1")
+ PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_UNKNOWN ) // e-Amusement
+ PORT_BIT( 0xfe, IP_ACTIVE_LOW, IPT_UNKNOWN )
+
+ PORT_START("IN2")
+ PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNKNOWN ) /* Dip switches */
+
+ PORT_START("WHEEL_P1") // Keyboard modulation wheel (P1)
+ PORT_BIT( 0xff, 0x80, IPT_PADDLE ) PORT_MINMAX(0xff, 0x00) PORT_SENSITIVITY(30) PORT_KEYDELTA(10)
+
+ PORT_START("WHEEL_P2") // Keyboard modulation wheel (P2)
+ PORT_BIT( 0xff, 0x80, IPT_PADDLE_V ) PORT_MINMAX(0xff, 0x00) PORT_SENSITIVITY(30) PORT_KEYDELTA(10)
+
+ PORT_START("KEYBOARD_P1")
+ PORT_BIT( 0x000001, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 C1") PORT_CODE(KEYCODE_Q)
+ PORT_BIT( 0x000002, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 C1#") PORT_CODE(KEYCODE_W)
+ PORT_BIT( 0x000004, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 D1") PORT_CODE(KEYCODE_E)
+ PORT_BIT( 0x000008, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 D1#") PORT_CODE(KEYCODE_R)
+ PORT_BIT( 0x000010, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 E1") PORT_CODE(KEYCODE_T)
+ PORT_BIT( 0x000020, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 F1") PORT_CODE(KEYCODE_Y)
+ PORT_BIT( 0x000040, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 F1#") PORT_CODE(KEYCODE_U)
+ PORT_BIT( 0x000080, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 G1") PORT_CODE(KEYCODE_I)
+ PORT_BIT( 0x000100, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 G1#") PORT_CODE(KEYCODE_O)
+ PORT_BIT( 0x000200, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 A1") PORT_CODE(KEYCODE_A)
+ PORT_BIT( 0x000400, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 A1#") PORT_CODE(KEYCODE_S)
+ PORT_BIT( 0x000800, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 B1") PORT_CODE(KEYCODE_D)
+ PORT_BIT( 0x001000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 C2") PORT_CODE(KEYCODE_F)
+ PORT_BIT( 0x002000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 C2#") PORT_CODE(KEYCODE_G)
+ PORT_BIT( 0x004000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 D2") PORT_CODE(KEYCODE_H)
+ PORT_BIT( 0x008000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 D2#") PORT_CODE(KEYCODE_J)
+ PORT_BIT( 0x010000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 E2") PORT_CODE(KEYCODE_K)
+ PORT_BIT( 0x020000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 F2") PORT_CODE(KEYCODE_L)
+ PORT_BIT( 0x040000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 F2#") PORT_CODE(KEYCODE_Z)
+ PORT_BIT( 0x080000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 G2") PORT_CODE(KEYCODE_X)
+ PORT_BIT( 0x100000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 G2#") PORT_CODE(KEYCODE_C)
+ PORT_BIT( 0x200000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 A2") PORT_CODE(KEYCODE_V)
+ PORT_BIT( 0x400000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 A2#") PORT_CODE(KEYCODE_B)
+ PORT_BIT( 0x800000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P1 B2") PORT_CODE(KEYCODE_N)
+
+ PORT_START("KEYBOARD_P2")
+ PORT_BIT( 0x000001, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 C1") PORT_CODE(KEYCODE_Q)
+ PORT_BIT( 0x000002, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 C1#") PORT_CODE(KEYCODE_W)
+ PORT_BIT( 0x000004, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 D1") PORT_CODE(KEYCODE_E)
+ PORT_BIT( 0x000008, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 D1#") PORT_CODE(KEYCODE_R)
+ PORT_BIT( 0x000010, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 E1") PORT_CODE(KEYCODE_T)
+ PORT_BIT( 0x000020, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 F1") PORT_CODE(KEYCODE_Y)
+ PORT_BIT( 0x000040, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 F1#") PORT_CODE(KEYCODE_U)
+ PORT_BIT( 0x000080, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 G1") PORT_CODE(KEYCODE_I)
+ PORT_BIT( 0x000100, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 G1#") PORT_CODE(KEYCODE_O)
+ PORT_BIT( 0x000200, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 A1") PORT_CODE(KEYCODE_A)
+ PORT_BIT( 0x000400, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 A1#") PORT_CODE(KEYCODE_S)
+ PORT_BIT( 0x000800, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 B1") PORT_CODE(KEYCODE_D)
+ PORT_BIT( 0x001000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 C2") PORT_CODE(KEYCODE_F)
+ PORT_BIT( 0x002000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 C2#") PORT_CODE(KEYCODE_G)
+ PORT_BIT( 0x004000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 D2") PORT_CODE(KEYCODE_H)
+ PORT_BIT( 0x008000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 D2#") PORT_CODE(KEYCODE_J)
+ PORT_BIT( 0x010000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 E2") PORT_CODE(KEYCODE_K)
+ PORT_BIT( 0x020000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 F2") PORT_CODE(KEYCODE_L)
+ PORT_BIT( 0x040000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 F2#") PORT_CODE(KEYCODE_Z)
+ PORT_BIT( 0x080000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 G2") PORT_CODE(KEYCODE_X)
+ PORT_BIT( 0x100000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 G2#") PORT_CODE(KEYCODE_C)
+ PORT_BIT( 0x200000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 A2") PORT_CODE(KEYCODE_V)
+ PORT_BIT( 0x400000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 A2#") PORT_CODE(KEYCODE_B)
+ PORT_BIT( 0x800000, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("P2 B2") PORT_CODE(KEYCODE_N)
+
+INPUT_PORTS_END
+
+static INPUT_PORTS_START(popn)
+ PORT_START("IN0")
+ PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_BUTTON1 ) // Switch 1
+ PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_BUTTON2 ) // Switch 2
+ PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_BUTTON3 ) // Switch 3
+ PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_BUTTON4 ) // Switch 4
+ PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON5 ) // Switch 5
+ PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON6 ) // Switch 6
+ PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON7 ) // Switch 7
+ PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_BUTTON8 ) // Switch 8
+
+ PORT_START("IN1")
+ PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_BUTTON9 ) // Switch 9
+ PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_UNKNOWN )
+ PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_COIN1 ) // Coin
+ PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_UNKNOWN )
+ PORT_SERVICE_NO_TOGGLE( 0x10, IP_ACTIVE_LOW) // Test
+ PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_UNKNOWN )
+ PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_SERVICE ) PORT_NAME("Service") PORT_CODE(KEYCODE_7) // Service
+ PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_UNKNOWN )
+
+ PORT_START("IN2")
+ PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNKNOWN ) /* Dip switches */
+
+INPUT_PORTS_END
+
+static INTERRUPT_GEN(firebeat_interrupt)
+{
+ // IRQs
+ // IRQ 0: VBlank
+ // IRQ 1: Extend board IRQ
+ // IRQ 2: Main board UART
+ // IRQ 4: ATAPI
+
+ device_set_input_line(device, INPUT_LINE_IRQ0, ASSERT_LINE);
+}
+
+static MACHINE_RESET( firebeat )
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ void *cd;
+ int i;
+ UINT8 *sound = machine.region("ymz")->base();
+
+ for (i=0; i < 0x200000; i++)
+ {
+ sound[i] = state->m_flash[1]->read(i);
+ sound[i+0x200000] = state->m_flash[2]->read(i);
+ }
+
+ SCSIGetDevice( state->m_atapi_device_data[1], &cd );
+ cdda_set_cdrom(machine.device("cdda"), cd);
+}
+
+static MACHINE_CONFIG_START( firebeat, firebeat_state )
+
+ /* basic machine hardware */
+ MCFG_CPU_ADD("maincpu", PPC403GCX, 66000000)
+ MCFG_CPU_PROGRAM_MAP(firebeat_map)
+ MCFG_CPU_VBLANK_INT("screen", firebeat_interrupt)
+
+ MCFG_MACHINE_START(firebeat)
+ MCFG_MACHINE_RESET(firebeat)
+
+ MCFG_RTC65271_ADD("rtc", NULL)
+
+ MCFG_FUJITSU_29F016A_ADD("flash0")
+ MCFG_FUJITSU_29F016A_ADD("flash1")
+ MCFG_FUJITSU_29F016A_ADD("flash2")
+
+ /* video hardware */
+ MCFG_SCREEN_ADD("screen", RASTER)
+ MCFG_SCREEN_REFRESH_RATE(60)
+ MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500) /* not accurate */)
+ MCFG_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16)
+ MCFG_SCREEN_SIZE(640, 480)
+ MCFG_SCREEN_VISIBLE_AREA(0, 639, 0, 479)
+ MCFG_SCREEN_UPDATE(firebeat)
+
+ MCFG_PALETTE_LENGTH(32768)
+
+ MCFG_PALETTE_INIT(RRRRR_GGGGG_BBBBB)
+ MCFG_VIDEO_START(firebeat)
+
+ /* sound hardware */
+ MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker")
+
+ MCFG_SOUND_ADD("ymz", YMZ280B, 16934400)
+ MCFG_SOUND_CONFIG(ymz280b_intf)
+ MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
+ MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)
+
+ MCFG_SOUND_ADD("cdda", CDDA, 0)
+ MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
+ MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)
+
+MACHINE_CONFIG_END
+
+static MACHINE_CONFIG_START( firebeat2, firebeat_state )
+
+ /* basic machine hardware */
+ MCFG_CPU_ADD("maincpu", PPC403GCX, 66000000)
+ MCFG_CPU_PROGRAM_MAP(firebeat_map)
+ MCFG_CPU_VBLANK_INT("lscreen", firebeat_interrupt)
+
+ MCFG_MACHINE_START(firebeat)
+ MCFG_MACHINE_RESET(firebeat)
+
+ MCFG_RTC65271_ADD("rtc", NULL)
+
+ MCFG_FUJITSU_29F016A_ADD("flash0")
+ MCFG_FUJITSU_29F016A_ADD("flash1")
+ MCFG_FUJITSU_29F016A_ADD("flash2")
+
+ /* video hardware */
+ MCFG_PALETTE_LENGTH(32768)
+ MCFG_PALETTE_INIT(RRRRR_GGGGG_BBBBB)
+
+ MCFG_SCREEN_ADD("lscreen", RASTER)
+ MCFG_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16)
+ MCFG_SCREEN_REFRESH_RATE(60)
+ MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500) /* not accurate */)
+ MCFG_SCREEN_SIZE(640, 480)
+ MCFG_SCREEN_VISIBLE_AREA(0, 639, 0, 479)
+ MCFG_SCREEN_UPDATE(firebeat)
+
+ MCFG_SCREEN_ADD("rscreen", RASTER)
+ MCFG_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16)
+ MCFG_SCREEN_REFRESH_RATE(60)
+ MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500) /* not accurate */)
+ MCFG_SCREEN_SIZE(640, 480)
+ MCFG_SCREEN_VISIBLE_AREA(0, 639, 0, 479)
+ MCFG_SCREEN_UPDATE(firebeat)
+
+ MCFG_VIDEO_START(firebeat)
+
+ /* sound hardware */
+ MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker")
+
+ MCFG_SOUND_ADD("ymz", YMZ280B, 16934400)
+ MCFG_SOUND_CONFIG(ymz280b_intf)
+ MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
+ MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)
+
+ MCFG_SOUND_ADD("cdda", CDDA, 0)
+ MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
+ MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)
+MACHINE_CONFIG_END
+
+static MACHINE_CONFIG_DERIVED( firebeat_spu, firebeat )
+
+ MCFG_CPU_ADD("audiocpu", M68000, 16000000)
+ MCFG_CPU_PROGRAM_MAP(spu_map)
+
+MACHINE_CONFIG_END
+
+/*****************************************************************************/
+/* Security dongle is a Dallas DS1411 RS232 Adapter with a DS1991 Multikey iButton */
+
+enum
+{
+ DS1991_STATE_NORMAL,
+ DS1991_STATE_READ_SUBKEY,
+};
+
+
+
+
+static void set_ibutton(firebeat_state *state, UINT8 *data)
+{
+ int i, j;
+
+ for (i=0; i < 3; i++)
+ {
+ // identifier
+ for (j=0; j < 8; j++)
+ {
+ state->m_ibutton.subkey[i].identifier[j] = *data++;
+ }
+
+ // password
+ for (j=0; j < 8; j++)
+ {
+ state->m_ibutton.subkey[i].password[j] = *data++;
+ }
+
+ // data
+ for (j=0; j < 48; j++)
+ {
+ state->m_ibutton.subkey[i].data[j] = *data++;
+ }
+ }
+}
+
+static int ibutton_w(running_machine &machine, UINT8 data)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ int r = -1;
+
+ switch (state->m_ibutton_state)
+ {
+ case DS1991_STATE_NORMAL:
+ {
+ switch (data)
+ {
+ //
+ // DS2408B Serial 1-Wire Line Driver with Load Sensor
+ //
+ case 0xc1: // DS2480B reset
+ {
+ r = 0xcd;
+ break;
+ }
+ case 0xe1: // DS2480B set data mode
+ {
+ break;
+ }
+ case 0xe3: // DS2480B set command mode
+ {
+ break;
+ }
+
+ //
+ // DS1991 MultiKey iButton
+ //
+ case 0x66: // DS1991 Read SubKey
+ {
+ r = 0x66;
+ state->m_ibutton_state = DS1991_STATE_READ_SUBKEY;
+ state->m_ibutton_read_subkey_ptr = 0;
+ break;
+ }
+ case 0xcc: // DS1991 skip rom
+ {
+ r = 0xcc;
+ state->m_ibutton_state = DS1991_STATE_NORMAL;
+ break;
+ }
+ default:
+ {
+ fatalerror("ibutton: unknown normal mode cmd %02X\n", data);
+ break;
+ }
+ }
+ break;
+ }
+
+ case DS1991_STATE_READ_SUBKEY:
+ {
+ if (state->m_ibutton_read_subkey_ptr == 0) // Read SubKey, 2nd command byte
+ {
+ int subkey = (data >> 6) & 0x3;
+ // printf("iButton SubKey %d\n", subkey);
+ r = data;
+
+ if (subkey < 3)
+ {
+ memcpy(&state->m_ibutton_subkey_data[0], state->m_ibutton.subkey[subkey].identifier, 8);
+ memcpy(&state->m_ibutton_subkey_data[8], state->m_ibutton.subkey[subkey].password, 8);
+ memcpy(&state->m_ibutton_subkey_data[16], state->m_ibutton.subkey[subkey].data, 0x30);
+ }
+ else
+ {
+ memset(&state->m_ibutton_subkey_data[0], 0, 0x40);
+ }
+ }
+ else if (state->m_ibutton_read_subkey_ptr == 1) // Read SubKey, 3rd command byte
+ {
+ r = data;
+ }
+ else
+ {
+ r = state->m_ibutton_subkey_data[state->m_ibutton_read_subkey_ptr-2];
+ }
+ state->m_ibutton_read_subkey_ptr++;
+ if (state->m_ibutton_read_subkey_ptr >= 0x42)
+ {
+ state->m_ibutton_state = DS1991_STATE_NORMAL;
+ }
+ break;
+ }
+ }
+
+ return r;
+}
+
+static void security_w(device_t *device, UINT8 data)
+{
+ int r = ibutton_w(device->machine(), data);
+ if (r >= 0)
+ ppc4xx_spu_receive_byte(device->machine().device("maincpu"), r);
+}
+
+/*****************************************************************************/
+
+static void init_lights(running_machine &machine, write32_space_func out1, const char *out1name, write32_space_func out2, const char *out2name, write32_space_func out3, const char *out3name)
+{
+ if(!out1) out1 = lamp_output_w, out1name = "lamp_output_w";
+ if(!out2) out2 = lamp_output2_w, out2name = "lamp_output2_w";
+ if(!out3) out3 = lamp_output3_w, out3name = "lamp_output3_w";
+
+ machine.device("maincpu")->memory().space(AS_PROGRAM)->install_legacy_write_handler(0x7d000804, 0x7d000807, out1, out1name);
+ machine.device("maincpu")->memory().space(AS_PROGRAM)->install_legacy_write_handler(0x7d000320, 0x7d000323, out2, out2name);
+ machine.device("maincpu")->memory().space(AS_PROGRAM)->install_legacy_write_handler(0x7d000324, 0x7d000327, out3, out3name);
+}
+
+static void init_firebeat(running_machine &machine)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ UINT8 *rom = machine.region("user2")->base();
+
+ atapi_init(machine);
+
+ pc16552d_init(machine, 0, 19660800, comm_uart_irq_callback, 0); // Network UART
+ pc16552d_init(machine, 1, 24000000, midi_uart_irq_callback, 0); // MIDI UART
+
+ state->m_extend_board_irq_enable = 0x3f;
+ state->m_extend_board_irq_active = 0x00;
+
+ state->m_cur_cab_data = cab_data;
+
+ ppc4xx_spu_set_tx_handler(machine.device("maincpu"), security_w);
+
+ set_ibutton(state, rom);
+
+ init_lights(machine, FUNC_NULL, FUNC_NULL, FUNC_NULL);
+}
+
+static DRIVER_INIT(ppp)
+{
+ init_firebeat(machine);
+ init_lights(machine, FUNC(lamp_output_ppp_w), FUNC(lamp_output2_ppp_w), FUNC(lamp_output3_ppp_w));
+}
+
+static DRIVER_INIT(ppd)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ init_firebeat(machine);
+ init_lights(machine, FUNC(lamp_output_ppp_w), FUNC(lamp_output2_ppp_w), FUNC(lamp_output3_ppp_w));
+
+ state->m_cur_cab_data = ppd_cab_data;
+}
+
+static void init_keyboard(running_machine &machine)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ // set keyboard timer
+ state->m_keyboard_timer = machine.scheduler().timer_alloc(FUNC(keyboard_timer_callback));
+ state->m_keyboard_timer->adjust(attotime::from_msec(10), 0, attotime::from_msec(10));
+}
+
+static DRIVER_INIT(kbm)
+{
+ firebeat_state *state = machine.driver_data<firebeat_state>();
+ init_firebeat(machine);
+ init_lights(machine, FUNC(lamp_output_kbm_w), FUNC_NULL, FUNC_NULL);
+
+ init_keyboard(machine);
+
+ state->m_cur_cab_data = kbm_cab_data;
+}
+
+
+/*****************************************************************************/
+
+ROM_START( ppp )
+ ROM_REGION32_BE(0x80000, "user1", 0)
+ ROM_LOAD16_WORD_SWAP("977jaa03.21e", 0x00000, 0x80000, CRC(7b83362a) SHA1(2857a93be58636c10a8d180dbccf2caeeaaff0e2))
+
+ ROM_REGION(0x400000, "ymz", ROMREGION_ERASE00)
+
+ ROM_REGION(0xc0, "user2", 0) // Security dongle
+ ROM_LOAD("gq977-ja", 0x00, 0xc0, BAD_DUMP CRC(55b5abdb) SHA1(d8da5bac005235480a1815bd0a79c3e8a63ebad1))
+
+ DISK_REGION( "scsi0" )
+ DISK_IMAGE_READONLY( "977jaa01", 0, SHA1(59c03d8eb366167feef741d42d9d8b54bfeb3c1e) )
+
+ // TODO: the audio CD is not dumped
+ROM_END
+
+ROM_START( kbm )
+ ROM_REGION32_BE(0x80000, "user1", 0)
+ ROM_LOAD16_WORD_SWAP("974a03.21e", 0x00000, 0x80000, CRC(ef9a932d) SHA1(6299d3b9823605e519dbf1f105b59a09197df72f))
+
+ ROM_REGION(0x400000, "ymz", ROMREGION_ERASE00)
+
+ ROM_REGION(0xc0, "user2", ROMREGION_ERASE00) // Security dongle
+ ROM_LOAD("gq974-ja", 0x00, 0xc0, BAD_DUMP CRC(4578f29b) SHA1(faaeaf6357c1e86e898e7017566cfd2fc7ee3d6f))
+
+ DISK_REGION( "scsi0" )
+ DISK_IMAGE_READONLY( "974jac01", 0, SHA1(c6145d7090e44c87f71ba626620d2ae2596a75ca) )
+
+ DISK_REGION( "scsi1" )
+ DISK_IMAGE_READONLY( "974jaa02", 1, SHA1(3b9946083239eb5687f66a49df24568bffa4fbbd) )
+ROM_END
+
+ROM_START( kbm2nd )
+ ROM_REGION32_BE(0x80000, "user1", 0)
+ ROM_LOAD16_WORD_SWAP("974a03.21e", 0x00000, 0x80000, CRC(ef9a932d) SHA1(6299d3b9823605e519dbf1f105b59a09197df72f))
+
+ ROM_REGION(0x400000, "ymz", ROMREGION_ERASE00)
+
+ ROM_REGION(0xc0, "user2", ROMREGION_ERASE00) // Security dongle
+ ROM_LOAD("gca01-ja", 0x00, 0xc0, BAD_DUMP CRC(2bda339d) SHA1(031cb3f44e7a89cd62a9ba948f3d19d53a325abd))
+
+ DISK_REGION( "scsi0" )
+ DISK_IMAGE_READONLY( "a01jaa01", 0, SHA1(37bc3879719b3d3c6bc8a5691abd7aa4aec87d45) )
+
+ DISK_REGION( "scsi1" )
+ DISK_IMAGE_READONLY( "a01jaa02", 1, SHA1(a3fdeee0f85a7a9718c0fb1cc642ac22d3eff8db) )
+ROM_END
+
+ROM_START( kbm3rd )
+ ROM_REGION32_BE(0x80000, "user1", 0)
+ ROM_LOAD16_WORD_SWAP("974a03.21e", 0x00000, 0x80000, CRC(ef9a932d) SHA1(6299d3b9823605e519dbf1f105b59a09197df72f))
+
+ ROM_REGION(0x400000, "ymz", ROMREGION_ERASE00)
+
+ ROM_REGION(0xc0, "user2", 0) // Security dongle
+ ROM_LOAD("gca12-ja", 0x00, 0xc0, BAD_DUMP CRC(cf01dc15) SHA1(da8d208233487ebe65a0a9826fc72f1f459baa26))
+
+ DISK_REGION( "scsi0" )
+ DISK_IMAGE_READONLY( "a12jaa01", 0, SHA1(10f2284248e51b1adf0fde173df72ad97fe0e5c8) )
+
+ DISK_REGION( "scsi1" )
+ DISK_IMAGE_READONLY( "a12jaa02", 1, SHA1(1256ce9d71350d355a256f83c7b319f0e6e84525) )
+ROM_END
+
+ROM_START( popn5 )
+ ROM_REGION32_BE(0x80000, "user1", 0)
+ ROM_LOAD16_WORD_SWAP( "a02jaa03.21e", 0x000000, 0x080000, CRC(43ecc093) SHA1(637df5b546cf7409dd4752dc471674fe2a046599) )
+
+ ROM_REGION(0x400000, "ymz", ROMREGION_ERASE00)
+
+ ROM_REGION(0xc0, "user2", ROMREGION_ERASE00) // Security dongle
+
+ ROM_REGION(0x80000, "audiocpu", 0) // SPU 68K program
+ ROM_LOAD16_WORD_SWAP( "a02jaa04.3q", 0x000000, 0x080000, CRC(8c6000dd) SHA1(94ab2a66879839411eac6c673b25143d15836683) )
+
+ DISK_REGION( "scsi0" )
+ DISK_IMAGE_READONLY( "a04jaa01", 0, SHA1(87136ddad1d786b4d5f04381fcbf679ab666e6c9) )
+
+ DISK_REGION( "scsi1" )
+ DISK_IMAGE_READONLY( "a04jaa02", 1, SHA1(49a017dde76f84829f6e99a678524c40665c3bfd) )
+ROM_END
+
+ROM_START( popn7 )
+ ROM_REGION32_BE(0x80000, "user1", 0)
+ ROM_LOAD16_WORD_SWAP("a02jaa03.21e", 0x00000, 0x80000, CRC(43ecc093) SHA1(637df5b546cf7409dd4752dc471674fe2a046599))
+
+ ROM_REGION(0x400000, "ymz", ROMREGION_ERASE00)
+
+ ROM_REGION(0xc0, "user2", ROMREGION_ERASE00) // Security dongle
+ ROM_LOAD("gcb00-ja", 0x00, 0xc0, BAD_DUMP CRC(cc28625a) SHA1(e7de79ae72fdbd22328c9de74dfa17b5e6ae43b6))
+
+ ROM_REGION(0x80000, "audiocpu", 0) // SPU 68K program
+ ROM_LOAD16_WORD_SWAP("a02jaa04.3q", 0x00000, 0x80000, CRC(8c6000dd) SHA1(94ab2a66879839411eac6c673b25143d15836683))
+
+ DISK_REGION( "scsi0" )
+ DISK_IMAGE_READONLY( "b00jab01", 0, SHA1(604fd460befcb5c53ae230155b83dec3a0b668d7) )
+
+ DISK_REGION( "scsi1" )
+ DISK_IMAGE_READONLY( "b00jaa02", 1, SHA1(9e226f6b377ea72514d58dd350578b7dad12a70a) )
+ROM_END
+
+ROM_START( ppd )
+ ROM_REGION32_BE(0x80000, "user1", 0)
+ ROM_LOAD16_WORD_SWAP("977jaa03.21e", 0x00000, 0x80000, CRC(7b83362a) SHA1(2857a93be58636c10a8d180dbccf2caeeaaff0e2))
+
+ ROM_REGION(0x400000, "ymz", ROMREGION_ERASE00)
+
+ ROM_REGION(0xc0, "user2", ROMREGION_ERASE00) // Security dongle
+ ROM_LOAD("gq977-ko", 0x00, 0xc0, BAD_DUMP CRC(ee743323) SHA1(2042e45879795557ad3cc21b37962f6bf54da60d))
+
+ DISK_REGION( "scsi0" )
+ DISK_IMAGE_READONLY( "977kaa01", 0, SHA1(7af9f4949ffa10ea5fc18b6c88c2abc710df3cf9) )
+
+ DISK_REGION( "scsi1" )
+ DISK_IMAGE_READONLY( "977kaa02", 1, SHA1(cfca3cbc41c6203c3f3b482a6be5f63d33a8a966) )
+ROM_END
+
+ROM_START( ppp11 )
+ ROM_REGION32_BE(0x80000, "user1", 0)
+ ROM_LOAD16_WORD_SWAP("977jaa03.21e", 0x00000, 0x80000, CRC(7b83362a) SHA1(2857a93be58636c10a8d180dbccf2caeeaaff0e2))
+
+ ROM_REGION(0x400000, "ymz", ROMREGION_ERASE00)
+
+ ROM_REGION(0xc0, "user2", ROMREGION_ERASE00) // Security dongle
+ ROM_LOAD("gq977-ja", 0x00, 0xc0, BAD_DUMP CRC(55b5abdb) SHA1(d8da5bac005235480a1815bd0a79c3e8a63ebad1))
+
+ DISK_REGION( "scsi0" )
+ DISK_IMAGE_READONLY( "gc977jaa01", 0, SHA1(6b93dd38029ea68f9572126e48d618edce68fbce) )
+
+ DISK_REGION( "scsi1" )
+ DISK_IMAGE_READONLY( "gc977jaa02", 1, SHA1(b853a6f4edcaceb609fe2a3d6a18d4ac62bd3822) )
+ROM_END
+
+/*****************************************************************************/
+
+GAME( 2000, ppp, 0, firebeat, ppp, ppp, ROT0, "Konami", "ParaParaParadise", GAME_NOT_WORKING)
+GAME( 2000, ppd, 0, firebeat, ppp, ppd, ROT0, "Konami", "ParaParaDancing", GAME_NOT_WORKING)
+GAME( 2000, ppp11, 0, firebeat, ppp, ppp, ROT0, "Konami", "ParaParaParadise v1.1", GAME_NOT_WORKING)
+GAMEL(2000, kbm, 0, firebeat2, kbm, kbm, ROT270, "Konami", "Keyboardmania", GAME_NOT_WORKING, layout_firebeat)
+GAMEL(2000, kbm2nd, 0, firebeat2, kbm, kbm, ROT270, "Konami", "Keyboardmania 2nd Mix", GAME_NOT_WORKING, layout_firebeat)
+GAMEL(2001, kbm3rd, 0, firebeat2, kbm, kbm, ROT270, "Konami", "Keyboardmania 3rd Mix", GAME_NOT_WORKING, layout_firebeat)
+GAME( 2000, popn5, 0, firebeat_spu, popn, ppp, ROT0, "Konami", "Pop n' Music 5", GAME_NOT_WORKING)
+GAME( 2001, popn7, 0, firebeat_spu, popn, ppp, ROT0, "Konami", "Pop n' Music 7", GAME_NOT_WORKING)