diff options
author | 2015-09-07 22:14:16 -0600 | |
---|---|---|
committer | 2015-09-07 22:14:16 -0600 | |
commit | 3cb8f5d368628b98acd74d1672017d0f5ba9e8de (patch) | |
tree | 719c6d8db9c6a7f44ceb3a74382562608137ada1 /src/mess/drivers/n64.c | |
parent | 9b3b4cdf053a8696ce2a570ed6700835fc1f8c0f (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.c | 2 |
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) |