summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/n64.c
diff options
context:
space:
mode:
author Happy <Happy-yappH@users.noreply.github.com>2015-09-07 22:14:16 -0600
committer Happy <Happy-yappH@users.noreply.github.com>2015-09-07 22:14:16 -0600
commit3cb8f5d368628b98acd74d1672017d0f5ba9e8de (patch)
tree719c6d8db9c6a7f44ceb3a74382562608137ada1 /src/mess/drivers/n64.c
parent9b3b4cdf053a8696ce2a570ed6700835fc1f8c0f (diff)
N64 driver improvements.
Add coprocessor unusable exceptions for LWC1/SWC1/LDC1/SDC1. Change PI DMA granularity from eight bytes to two bytes. Add delay timer for SI DMA. Change behavior for interlaced video to be more useful, but still needing revision. Simplify/remove some AI DMA interrupt signals. Removed line that cleared EEPROM contents with every machine reset (warm or cold).
Diffstat (limited to 'src/mess/drivers/n64.c')
-rw-r--r--src/mess/drivers/n64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/n64.c b/src/mess/drivers/n64.c
index 503d80e839f..6dea563aa67 100644
--- a/src/mess/drivers/n64.c
+++ b/src/mess/drivers/n64.c
@@ -410,7 +410,7 @@ static MACHINE_CONFIG_START( n64, n64_mess_state )
MCFG_SCREEN_REFRESH_RATE(60)
MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(0))
MCFG_SCREEN_SIZE(640, 525)
- MCFG_SCREEN_VISIBLE_AREA(0, 639, 0, 239)
+ MCFG_SCREEN_VISIBLE_AREA(0, 639, 0, 479)
MCFG_SCREEN_UPDATE_DRIVER(n64_state, screen_update_n64)
MCFG_PALETTE_ADD("palette", 0x1000)