I know which rom you mean, it is on the video board with the 6545 CRTC etc. But... Seems that rom/pal isn't used in MESS, otherwise I would have listed the hex dump for you. The contents aren't listed in the service manual either. But... found this listing in the MESS microbee driver, maybe it will help.. static UINT8 palette[] =
{
0x00,0x00,0x00, /* black */
0xf0,0x00,0x00, /* red */
0x00,0xf0,0x00, /* green */
0xf0,0xf0,0x00, /* yellow */
0x00,0x00,0xf0, /* blue */
0xf0,0x00,0xf0, /* magenta */
0x00,0xf0,0xf0, /* cyan */
0xf0,0xf0,0xf0, /* white */
0x08,0x08,0x08, /* black */
0xe0,0x08,0x08, /* red */
0x08,0xe0,0x08, /* green */
0xe0,0xe0,0x08, /* yellow */
0x08,0x08,0xe0, /* blue */
0xe0,0x08,0xe0, /* magenta */
0x08,0xe0,0xe0, /* cyan */
0xe0,0xe0,0xe0, /* white */
0x10,0x10,0x10, /* black */
0xd0,0x10,0x10, /* red */
0x10,0xd0,0x10, /* green */
0xd0,0xd0,0x10, /* yellow */
0x10,0x10,0xd0, /* blue */
0xd0,0x10,0xd0, /* magenta */
0x10,0xd0,0xd0, /* cyan */
0xd0,0xd0,0xd0, /* white */
0x18,0x18,0x18, /* black */
0xe0,0x18,0x18, /* red */
0x18,0xe0,0x18, /* green */
0xe0,0xe0,0x18, /* yellow */
0x18,0x18,0xe0, /* blue */
0xe0,0x18,0xe0, /* magenta */
0x18,0xe0,0xe0, /* cyan */
0xe0,0xe0,0xe0, /* white */
};
static PALETTE_INIT( mbee )
{
int i;
palette_set_colors(machine, 0, palette, 32);
for( i = 0; i < 256; i++ )
{
colortable[2*i+0] = i / 32;
colortable[2*i+1] = i & 31;
}
}