Search
lxdream.org :: lxdream/src/sh4/sh4mmio.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/sh4/sh4mmio.c
changeset 336:c3455be86ee2
prev323:067583c1a704
next413:bff683bc5228
author nkeynes
date Sun Sep 16 07:03:23 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Implement MAC.W, MAC.L and DIV1
Correct SHAD/SHLD
Fix privilege and slot illegal checks on LDC/STC opcodes
Fix various other small bugs
file annotate diff log raw
1.1 --- a/src/sh4/sh4mmio.c Thu Jan 25 08:21:56 2007 +0000
1.2 +++ b/src/sh4/sh4mmio.c Sun Sep 16 07:03:23 2007 +0000
1.3 @@ -1,5 +1,5 @@
1.4 /**
1.5 - * $Id: sh4mmio.c,v 1.11 2007-01-25 08:21:56 nkeynes Exp $
1.6 + * $Id: sh4mmio.c,v 1.12 2007-01-27 12:04:22 nkeynes Exp $
1.7 *
1.8 * Miscellaneous and not-really-implemented SH4 peripheral modules. Also
1.9 * responsible for including the IMPL side of the SH4 MMIO pages.
1.10 @@ -138,7 +138,7 @@
1.11
1.12 }
1.13
1.14 -MMIO_REGION_WRITE_STUBFN(BSC)
1.15 +MMIO_REGION_WRITE_DEFFN(BSC)
1.16
1.17 int32_t mmio_region_BSC_read( uint32_t reg )
1.18 {
1.19 @@ -154,8 +154,6 @@
1.20 default:
1.21 val = MMIO_READ( BSC, reg );
1.22 }
1.23 - WARN( "Read from (mostly) unimplemented BSC (%03X => %08X) [%s: %s]",
1.24 - reg, val, MMIO_REGID(BSC,reg), MMIO_REGDESC(BSC,reg) );
1.25 return val;
1.26 }
1.27
.