Search
lxdream.org :: lxdream :: r273:48eb3304a41e
lxdream 0.9.1
released Jun 29
Download Now
changeset273:48eb3304a41e
parent272:fb6be85235e8
child274:4e8f1e988d80
authornkeynes
dateThu Jan 11 12:14:11 2007 +0000 (16 years ago)
Always return TRUE at end of execute instruction (oops)
src/sh4/sh4core.c
1.1 --- a/src/sh4/sh4core.c Thu Jan 11 06:53:31 2007 +0000
1.2 +++ b/src/sh4/sh4core.c Thu Jan 11 12:14:11 2007 +0000
1.3 @@ -1,5 +1,5 @@
1.4 /**
1.5 - * $Id: sh4core.c,v 1.37 2007-01-06 04:06:36 nkeynes Exp $
1.6 + * $Id: sh4core.c,v 1.38 2007-01-11 12:14:11 nkeynes Exp $
1.7 *
1.8 * SH4 emulation core, and parent module for all the SH4 peripheral
1.9 * modules.
1.10 @@ -1665,4 +1665,5 @@
1.11 sh4r.pc = sh4r.new_pc;
1.12 sh4r.new_pc += 2;
1.13 sh4r.in_delay_slot = 0;
1.14 + return TRUE;
1.15 }
.