Finishing to clean tests and adding the start of the bus logger

This commit is contained in:
Anonymus Raccoon
2020-03-24 01:53:45 +01:00
parent 09cd825bed
commit 95f17c06a8
47 changed files with 2421 additions and 2176 deletions
+5 -5
View File
@@ -13,7 +13,7 @@ namespace ComSquare::APU
{
APU::APU(std::shared_ptr<MemoryMap> &map) :
_map(map),
_dsp(new DSP::DSP)
_dsp(new DSP::DSP())
{
this->reset();
}
@@ -359,10 +359,10 @@ namespace ComSquare::APU
}
MemoryMap::MemoryMap() :
Page0(0x00F0),
Page1(0x0100),
Memory(0xFDC0),
IPL(0x0040)
Page0(0x00F0, "APU's Page 0"),
Page1(0x0100, "APU's Page 1"),
Memory(0xFDC0, "APU's Ram"),
IPL(0x0040, "IPL Rom")
{
}