summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/phunsy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/phunsy.c')
-rw-r--r--src/mess/drivers/phunsy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/drivers/phunsy.c b/src/mess/drivers/phunsy.c
index adc44076f69..31d589908a7 100644
--- a/src/mess/drivers/phunsy.c
+++ b/src/mess/drivers/phunsy.c
@@ -15,7 +15,7 @@
The tape must already be playing the leader when you press the Enter
key, or it errors immediately.
- Rom banking (in U bank):
+ Rom banking (in U bank):
0U: RAM
1U: MDCR program
2U: Disassembler
@@ -110,7 +110,7 @@ WRITE8_MEMBER( phunsy_state::phunsy_ctrl_w )
// U-bank
data >>= 4;
- if (data < 4)
+ if (data < 4)
membank("bankru")->set_entry(data);
}
@@ -354,7 +354,7 @@ static MACHINE_CONFIG_START( phunsy, phunsy_state )
MCFG_SCREEN_RAW_PARAMS(XTAL_8MHz, 480, 0, 64*6, 313, 0, 256)
MCFG_SCREEN_UPDATE_DRIVER(phunsy_state, screen_update)
MCFG_SCREEN_PALETTE("palette")
-
+
MCFG_GFXDECODE_ADD("gfxdecode", "palette", phunsy)
MCFG_PALETTE_ADD("palette", 8)
MCFG_PALETTE_INIT_OWNER(phunsy_state, phunsy)