[NES] some little speedups, just to prove that it can be done
This commit is contained in:
parent
db78d7b462
commit
82ad219461
|
@ -233,6 +233,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
int timer_counter;
|
||||
public int sample;
|
||||
int env_output, env_start_flag, env_divider, env_counter;
|
||||
bool noise_bit = true;
|
||||
|
||||
public bool IsLenCntNonZero() { return len_cnt > 0; }
|
||||
|
||||
|
@ -304,7 +305,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
public void Run()
|
||||
{
|
||||
if (timer_counter > 0) timer_counter--;
|
||||
if (timer_counter == 0)
|
||||
if (timer_counter == 0 && period_cnt != 0)
|
||||
{
|
||||
//reload timer
|
||||
timer_counter = period_cnt;
|
||||
|
@ -315,12 +316,12 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
shift_register >>= 1;
|
||||
shift_register &= ~(1 << 14);
|
||||
shift_register |= (feedback << 14);
|
||||
noise_bit = (shift_register & 1)!=0;
|
||||
}
|
||||
|
||||
sample = env_output;
|
||||
if ((shift_register & 1) == 0) sample = 0;
|
||||
if (len_cnt == 0)
|
||||
sample = 0;
|
||||
if (noise_bit || len_cnt==0) sample = 0;
|
||||
else
|
||||
sample = env_output;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -546,7 +547,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
metaspu.buffer.clear();
|
||||
}
|
||||
|
||||
void RunOne()
|
||||
public void RunOne()
|
||||
{
|
||||
pulse[0].Run();
|
||||
pulse[1].Run();
|
||||
|
|
|
@ -250,7 +250,6 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
if (choices.Count == 0) return null;
|
||||
|
||||
//pick the first board for this hash arbitrarily. it probably doesn't make a difference
|
||||
Console.WriteLine("Chose board from nescartdb:");
|
||||
return choices[0];
|
||||
}
|
||||
|
||||
|
|
|
@ -65,6 +65,13 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
bool resetSignal;
|
||||
public void FrameAdvance(bool render)
|
||||
{
|
||||
if (resetSignal)
|
||||
{
|
||||
cpu.PC = cpu.ReadWord(MOS6502.ResetVector);
|
||||
apu.WriteReg(0x4015, 0);
|
||||
cpu.FlagI = true;
|
||||
}
|
||||
|
||||
Controller.UpdateControls(Frame++);
|
||||
if (resetSignal)
|
||||
Controller.UnpressButton("Reset");
|
||||
|
@ -74,24 +81,17 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
|
||||
protected void RunCpu(int ppu_cycles)
|
||||
{
|
||||
if (resetSignal)
|
||||
{
|
||||
cpu.PC = cpu.ReadWord(MOS6502.ResetVector);
|
||||
apu.WriteReg(0x4015, 0);
|
||||
cpu.FlagI = true;
|
||||
}
|
||||
|
||||
int cycles = ppu_cycles;
|
||||
if (ppu.PAL)
|
||||
cycles *= 15;
|
||||
cycles *= 15;
|
||||
else
|
||||
cycles *= 16;
|
||||
cycles <<= 4;
|
||||
|
||||
cpu_accumulate += cycles;
|
||||
int todo = cpu_accumulate / 48;
|
||||
cpu_accumulate -= todo * 48;
|
||||
if (todo > 0)
|
||||
if (cpu_accumulate >= 48)
|
||||
{
|
||||
int todo = cpu_accumulate / 48;
|
||||
cpu_accumulate -= todo * 48;
|
||||
cpu.Execute(todo);
|
||||
apu.Run(todo);
|
||||
}
|
||||
|
|
|
@ -412,7 +412,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
CartInfo choice = null;
|
||||
if(USE_DATABASE)
|
||||
choice = IdentifyFromBootGodDB(hash_sha1);
|
||||
if(choice == null)
|
||||
if (choice == null)
|
||||
{
|
||||
if (USE_DATABASE)
|
||||
{
|
||||
|
@ -435,10 +435,14 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
else
|
||||
{
|
||||
origin = EDetectionOrigin.GameDB;
|
||||
Console.WriteLine("Chose board from gamedb: ");
|
||||
Console.WriteLine("Chose board from gamedb: " + board);
|
||||
}
|
||||
}
|
||||
else origin = EDetectionOrigin.BootGodDB;
|
||||
else
|
||||
{
|
||||
Console.WriteLine("Chose board from nescartdb: " + choice.board_type);
|
||||
origin = EDetectionOrigin.BootGodDB;
|
||||
}
|
||||
|
||||
Console.WriteLine(choice.game);
|
||||
Console.WriteLine(choice);
|
||||
|
|
|
@ -403,7 +403,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
//screen (or basically, the first nametable address that will be accessed when
|
||||
//the PPU is fetching background data on the next scanline).
|
||||
//(not implemented yet)
|
||||
runppu(kFetchTime);
|
||||
runppu(kFetchTime*2);
|
||||
if (sl == 0)
|
||||
{
|
||||
if (idleSynch && reg_2001.PPUON && !PAL)
|
||||
|
@ -414,7 +414,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
}
|
||||
else
|
||||
ppur.status.end_cycle = 341;
|
||||
runppu(kFetchTime);
|
||||
//runppu(kFetchTime);
|
||||
|
||||
//After memory access 170, the PPU simply rests for 4 cycles (or the
|
||||
//equivelant of half a memory access cycle) before repeating the whole
|
||||
|
|
Loading…
Reference in New Issue