diff options
Diffstat (limited to 'src/devices/video/ppu2c0x.cpp')
-rw-r--r-- | src/devices/video/ppu2c0x.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/ppu2c0x.cpp b/src/devices/video/ppu2c0x.cpp index c4ac3898b4d..f0b20856c57 100644 --- a/src/devices/video/ppu2c0x.cpp +++ b/src/devices/video/ppu2c0x.cpp @@ -93,7 +93,7 @@ void ppu2c0x_device::ppu2c0x(address_map &map) { map(0x0000, 0x3eff).ram(); map(0x3f00, 0x3fff).rw(FUNC(ppu2c0x_device::palette_read), FUNC(ppu2c0x_device::palette_write)); -// AM_RANGE(0x0000, 0x3fff) AM_RAM +// map(0x0000, 0x3fff).ram(); } } |