fixing unit tests compil

This commit is contained in:
Clément Le Bihan
2021-06-23 00:32:22 +02:00
parent 21c88122f4
commit 3ff26f11cb
3 changed files with 7 additions and 3 deletions
+2 -2
View File
@@ -205,7 +205,7 @@ namespace ComSquare::PPU
uint8_t PPU::read(uint24_t addr)
{
return 0;
//return 0;
switch (addr) {
case PpuRegisters::mpyl:
return this->_registers._mpy.mpyl;
@@ -250,7 +250,7 @@ namespace ComSquare::PPU
void PPU::write(uint24_t addr, uint8_t data)
{
return;
//return;
switch (addr) {
case PpuRegisters::inidisp:
this->_registers._inidisp.raw = data;