summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/mips
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-06-12 19:59:19 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-06-12 19:59:19 +0000
commit5a162da3d4019ddb4a09003fd9ce763aa5d3bcd5 (patch)
treee115fb3b67f6c5a81a9d5dd9bb98ec7f23bf2319 /src/emu/cpu/mips
parent1855238186f63a2844012cc2460d17e69e0ed8f2 (diff)
Cleanups and version bump.mame0125u5
Diffstat (limited to 'src/emu/cpu/mips')
-rw-r--r--src/emu/cpu/mips/mips3.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/mips/mips3.h b/src/emu/cpu/mips/mips3.h
index 634698b5e0c..a82cf84e88e 100644
--- a/src/emu/cpu/mips/mips3.h
+++ b/src/emu/cpu/mips/mips3.h
@@ -1,8 +1,8 @@
/***************************************************************************
mips3.h
-
- Interface file for the universal machine language-based
+
+ Interface file for the universal machine language-based
MIPS III/IV emulator.
Copyright Aaron Giles
ghlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
typedef struct _news_state news_state;
struct _news_state
{
	/* memory pointers */
	UINT8 *  bgram;
	UINT8 *  fgram;
//  UINT8 *  paletteram;    // currently this uses generic palette handling

	/* video-related */
	tilemap_t *fg_tilemap, *bg_tilemap;
	int      bgpic;
};


/*----------- defined in video/news.c -----------*/

WRITE8_HANDLER( news_fgram_w );
WRITE8_HANDLER( news_bgram_w );
WRITE8_HANDLER( news_bgpic_w );

VIDEO_START( news );
VIDEO_UPDATE( news );