This commit is contained in:
mtabachenko 2008-09-24 17:50:02 +00:00
parent d5502611e3
commit 07908d8007
2 changed files with 1 additions and 2 deletions

View File

@ -2072,7 +2072,7 @@ void GPU_ligne(NDS_Screen * screen, u16 l)
// Read from FIFO MAIN_MEMORY_DISP_FIFO, two pixels at once format is x555, bit15 unused // Read from FIFO MAIN_MEMORY_DISP_FIFO, two pixels at once format is x555, bit15 unused
// Reference: http://nocash.emubase.de/gbatek.htm#dsvideocaptureandmainmemorydisplaymode // Reference: http://nocash.emubase.de/gbatek.htm#dsvideocaptureandmainmemorydisplaymode
// (under DISP_MMEM_FIFO) // (under DISP_MMEM_FIFO)
#ifdef 0 #if 0
for (i=0; i<256;) { for (i=0; i<256;) {
c = FIFOValue(MMU.fifos + MAIN_MEMORY_DISP_FIFO); c = FIFOValue(MMU.fifos + MAIN_MEMORY_DISP_FIFO);
T2WriteWord(dst, i << 1, c&0xFFFF); i++; T2WriteWord(dst, i << 1, c&0xFFFF); i++;

View File

@ -801,7 +801,6 @@ u32 FASTCALL _MMU_read32(u32 adr)
NDS_makeInt(proc^1,17) ; /* remote: SEND FIFO EMPTY */ NDS_makeInt(proc^1,17) ; /* remote: SEND FIFO EMPTY */
return val; return val;
#endif
} }
return 0; return 0;
case REG_TM0CNTL : case REG_TM0CNTL :