GBHawk; VRAM access cleanup

This commit is contained in:
alyosha-tas 2020-05-05 09:03:22 -04:00
parent 8c005e6ffa
commit 4391c97a8e
3 changed files with 38 additions and 10 deletions

View File

@ -958,7 +958,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
temp_fetch = y_tile * 32 + (x_tile + tile_inc) % 32;
tile_byte = Core.VRAM[0x1800 + (LCDC.Bit(3) ? 1 : 0) * 0x400 + temp_fetch];
tile_data[2] = Core.VRAM[0x3800 + (LCDC.Bit(3) ? 1 : 0) * 0x400 + temp_fetch];
bus_return = tile_data[2];
VRAM_sel = tile_data[2].Bit(3) ? 1 : 0;
BG_V_flip = tile_data[2].Bit(6) & Core.GBC_compat;
@ -984,7 +986,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
if (LCDC.Bit(4))
{
tile_data[0] = Core.VRAM[(VRAM_sel * 0x2000) + tile_byte * 16 + y_scroll_offset * 2];
bus_return = tile_data[0];
}
else
{
@ -993,10 +994,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
{
tile_byte -= 256;
}
tile_data[0] = Core.VRAM[(VRAM_sel * 0x2000) + 0x1000 + tile_byte * 16 + y_scroll_offset * 2];
bus_return = tile_data[0];
tile_data[0] = Core.VRAM[(VRAM_sel * 0x2000) + 0x1000 + tile_byte * 16 + y_scroll_offset * 2];
}
bus_return = tile_data[0];
read_case = 2;
}
break;
@ -1023,7 +1025,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
tile_byte += 256;
}
tile_data[1] = Core.VRAM[(VRAM_sel * 0x2000) + tile_byte * 16 + y_scroll_offset * 2 + 1];
bus_return = tile_data[1];
}
else
{
@ -1032,10 +1033,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
{
tile_byte -= 256;
}
tile_data[1] = Core.VRAM[(VRAM_sel * 0x2000) + 0x1000 + tile_byte * 16 + y_scroll_offset * 2 + 1];
bus_return = tile_data[1];
tile_data[1] = Core.VRAM[(VRAM_sel * 0x2000) + 0x1000 + tile_byte * 16 + y_scroll_offset * 2 + 1];
}
bus_return = tile_data[1];
if (pre_render)
{
// here we set up rendering
@ -1068,6 +1070,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
tile_data[2] = Core.VRAM[0x3800 + (LCDC.Bit(6) ? 1 : 0) * 0x400 + temp_fetch];
VRAM_sel = tile_data[2].Bit(3) ? 1 : 0;
BG_V_flip = tile_data[2].Bit(6) & Core.GBC_compat;
bus_return = tile_data[2];
window_tile_inc++;
@ -1089,7 +1092,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
if (LCDC.Bit(4))
{
tile_data[0] = Core.VRAM[(VRAM_sel * 0x2000) + tile_byte * 16 + y_scroll_offset * 2];
bus_return = tile_data[0];
}
else
{
@ -1099,9 +1101,10 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
tile_byte -= 256;
}
tile_data[0] = Core.VRAM[(VRAM_sel * 0x2000) + 0x1000 + tile_byte * 16 + y_scroll_offset * 2];
bus_return = tile_data[0];
}
bus_return = tile_data[0];
read_case = 6;
}
window_counter++;
@ -1125,7 +1128,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
tile_byte += 256;
}
tile_data[1] = Core.VRAM[(VRAM_sel * 0x2000) + tile_byte * 16 + y_scroll_offset * 2 + 1];
bus_return = tile_data[1];
}
else
{
@ -1135,9 +1137,10 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
tile_byte -= 256;
}
tile_data[1] = Core.VRAM[(VRAM_sel * 0x2000) + 0x1000 + tile_byte * 16 + y_scroll_offset * 2 + 1];
bus_return = tile_data[1];
}
bus_return = tile_data[1];
if (window_pre_render)
{
// here we set up rendering

View File

@ -924,6 +924,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
temp_fetch = y_tile * 32 + (x_tile + tile_inc) % 32;
tile_byte = Core.VRAM[0x1800 + (LCDC.Bit(3) ? 1 : 0) * 0x400 + temp_fetch];
tile_data[2] = Core.VRAM[0x3800 + (LCDC.Bit(3) ? 1 : 0) * 0x400 + temp_fetch];
bus_return = tile_data[2];
VRAM_sel = tile_data[2].Bit(3) ? 1 : 0;
BG_V_flip = tile_data[2].Bit(6);
@ -960,6 +963,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
tile_data[0] = Core.VRAM[(VRAM_sel * 0x2000) + 0x1000 + tile_byte * 16 + y_scroll_offset * 2];
}
bus_return = tile_data[0];
read_case = 2;
}
break;
@ -997,6 +1002,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
tile_data[1] = Core.VRAM[(VRAM_sel * 0x2000) + 0x1000 + tile_byte * 16 + y_scroll_offset * 2 + 1];
}
bus_return = tile_data[1];
if (pre_render)
{
// here we set up rendering
@ -1027,6 +1034,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
temp_fetch = window_y_tile * 32 + (window_x_tile + window_tile_inc) % 32;
tile_byte = Core.VRAM[0x1800 + (LCDC.Bit(6) ? 1 : 0) * 0x400 + temp_fetch];
tile_data[2] = Core.VRAM[0x3800 + (LCDC.Bit(6) ? 1 : 0) * 0x400 + temp_fetch];
bus_return = tile_data[2];
VRAM_sel = tile_data[2].Bit(3) ? 1 : 0;
BG_V_flip = tile_data[2].Bit(6);
@ -1060,6 +1070,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
tile_data[0] = Core.VRAM[(VRAM_sel * 0x2000) + 0x1000 + tile_byte * 16 + y_scroll_offset * 2];
}
bus_return = tile_data[0];
read_case = 6;
}
window_counter++;
@ -1094,6 +1106,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
tile_data[1] = Core.VRAM[(VRAM_sel * 0x2000) + 0x1000 + tile_byte * 16 + y_scroll_offset * 2 + 1];
}
bus_return = tile_data[1];
if (window_pre_render)
{
// here we set up rendering

View File

@ -664,7 +664,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
temp_fetch = y_tile * 32 + (x_tile + tile_inc) % 32;
tile_byte = Core.VRAM[0x1800 + (LCDC.Bit(3) ? 1 : 0) * 0x400 + temp_fetch];
bus_return = (byte)tile_byte;
read_case = 1;
if (!pre_render)
{
tile_inc++;
@ -691,6 +693,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
tile_data[0] = Core.VRAM[0x1000 + tile_byte * 16 + y_scroll_offset * 2];
}
bus_return = tile_data[0];
read_case = 2;
}
break;
@ -725,6 +728,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
tile_data[1] = Core.VRAM[0x1000 + tile_byte * 16 + y_scroll_offset * 2 + 1];
}
bus_return = tile_data[1];
if (pre_render)
{
// here we set up rendering
@ -755,6 +760,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
temp_fetch = window_y_tile * 32 + (window_x_tile + window_tile_inc) % 32;
tile_byte = Core.VRAM[0x1800 + (LCDC.Bit(6) ? 1 : 0) * 0x400 + temp_fetch];
bus_return = (byte)tile_byte;
window_tile_inc++;
read_case = 5;
}
@ -783,6 +790,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
tile_data[0] = Core.VRAM[0x1000 + tile_byte * 16 + y_scroll_offset * 2];
}
bus_return = tile_data[0];
read_case = 6;
}
window_counter++;
@ -813,6 +822,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
tile_data[1] = Core.VRAM[0x1000 + tile_byte * 16 + y_scroll_offset * 2 + 1];
}
bus_return = tile_data[1];
if (window_pre_render)
{
// here we set up rendering