summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/n64.c
diff options
context:
space:
mode:
author Happy <Happy-yappH@users.noreply.github.com>2015-09-23 13:21:25 -0600
committer Happy <Happy-yappH@users.noreply.github.com>2015-09-23 13:21:25 -0600
commit899f15f78d0fd62bed560694cee4f8aeb97e19d2 (patch)
tree8293b44bef9a796fe40bea25ee6322d5ea5dde16 /src/mess/drivers/n64.c
parent7c3674f16b03aa889a1e8cb08d6c1f89902f0b4d (diff)
N64 changes
PI transfers round down/truncate last bit SI transfers signal busy while waiting for delay Initial work to seperate VI from RDP as the actual hardware has no direct communication between them Stop ERET instruction spamming the error log Stop screen update from spamming the error log for using MCFG_SCREEN_VBLANK_TIME. The value set was also complete nonsense.
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 0557e200d4c..91c6f4632c0 100644
--- a/src/mess/drivers/n64.c
+++ b/src/mess/drivers/n64.c
@@ -412,7 +412,7 @@ static MACHINE_CONFIG_START( n64, n64_mess_state )
/* video hardware */
MCFG_SCREEN_ADD("screen", RASTER)
MCFG_SCREEN_REFRESH_RATE(60)
- MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(0))
+ //MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(0))
MCFG_SCREEN_SIZE(640, 525)
MCFG_SCREEN_VISIBLE_AREA(0, 639, 0, 479)
MCFG_SCREEN_UPDATE_DRIVER(n64_state, screen_update_n64)