Search
lxdream.org :: lxdream/src/sh4/scif.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/sh4/scif.c
changeset 828:b42865f00fb5
prev736:a02d1475ccfd
next929:fd8cb0c82f5f
author nkeynes
date Thu Dec 11 23:26:03 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Disable the generational translation cache - I've got no evidence that it
actually helps performance, and it simplifies things to get rid of it (in
particular, translated code doesn't have to worry about being moved now).
file annotate diff log raw
1.1 --- a/src/sh4/scif.c Mon Jul 14 07:44:42 2008 +0000
1.2 +++ b/src/sh4/scif.c Thu Dec 11 23:26:03 2008 +0000
1.3 @@ -546,8 +546,10 @@
1.4 break;
1.5 case SCSPTR2: /* Serial Port Register */
1.6 MMIO_WRITE( SCIF, reg, val );
1.7 - /* NOT IMPLEMENTED */
1.8 - WARN( "SCSPTR2 not implemented: Write %08X", val );
1.9 + /* NOT IMPLEMENTED - 'direct' serial I/O */
1.10 + if( val != 0 ) {
1.11 + WARN( "SCSPTR2 not implemented: Write %08X", val );
1.12 + }
1.13 break;
1.14 case SCLSR2:
1.15 val = val & SCLSR2_ORER;
.