From 355ee7fbc76dfb7cac4252e4ee2eb0c5c43ca586 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 18 Jan 2023 12:36:57 -0500 Subject: [PATCH] Adjust factoring of read and write per expanded V9938 scope. --- Components/9918/Implementation/9918.cpp | 122 +++++++++++++++----- Components/9918/Implementation/9918Base.hpp | 10 ++ 2 files changed, 100 insertions(+), 32 deletions(-) diff --git a/Components/9918/Implementation/9918.cpp b/Components/9918/Implementation/9918.cpp index ff05d409e..81c99c309 100644 --- a/Components/9918/Implementation/9918.cpp +++ b/Components/9918/Implementation/9918.cpp @@ -517,21 +517,30 @@ void Base::output_border(int cycles, [[maybe_unused]] uint32_t cram } } +// MARK: - External interface. + template -void TMS9918::write(int address, uint8_t value) { - // Writes to address 0 are writes to the video RAM. Store - // the value and return. - if(!(address & 1)) { - this->write_phase_ = false; - - // Enqueue the write to occur at the next available slot. - this->read_ahead_buffer_ = value; - this->queued_access_ = MemoryAccess::Write; - this->cycles_until_access_ = Timing::VRAMAccessDelay; - - return; +int Base::masked_address(int address) { + if constexpr (is_yamaha_vdp(personality)) { + return address & 3; + } else { + return address & 1; } +} +template +void Base::write_vram(uint8_t value) { + // Latch the value and exit. + this->write_phase_ = false; + + // Enqueue the write to occur at the next available slot. + this->read_ahead_buffer_ = value; + this->queued_access_ = MemoryAccess::Write; + this->cycles_until_access_ = Timing::VRAMAccessDelay; +} + +template +void Base::write_register(uint8_t value) { // Writes to address 1 are performed in pairs; if this is the // low byte of a value, store it and wait for the high byte. if(!this->write_phase_) { @@ -648,6 +657,75 @@ void TMS9918::write(int address, uint8_t value) { } } +template +void Base::write_palette(uint8_t value) { + LOG("Palette write TODO"); + (void)value; +} + +template +void Base::write_register_indirect(uint8_t value) { + LOG("Register indirect write TODO"); + (void)value; +} + +template +void TMS9918::write(int address, uint8_t value) { + switch(this->masked_address(address)) { + default: break; + case 0: this->write_vram(value); break; + case 1: this->write_register(value); break; + case 2: this->write_palette(value); break; + case 3: this->write_register_indirect(value); break; + } +} + +template +uint8_t Base::read_vram() { + // Take whatever is currently in the read-ahead buffer and + // enqueue a further read to occur at the next available slot. + const uint8_t result = this->read_ahead_buffer_; + this->queued_access_ = MemoryAccess::Read; + return result; +} + +template +uint8_t Base::read_register() { + // Gets the status register. + const uint8_t result = this->status_; + this->status_ &= ~(StatusInterrupt | StatusSpriteOverflow | StatusSpriteCollision); + this->line_interrupt_pending_ = false; + return result; +} + +template +uint8_t Base::read_palette() { + LOG("Palette read TODO"); + return 0xff; +} + +template +uint8_t Base::read_register_indirect() { + LOG("Register indirect read TODO"); + return 0xff; +} + +template +uint8_t TMS9918::read(int address) { + // TODO: is this still a global effect of reads, even in the world of the Yamahas? + this->write_phase_ = false; + + switch(this->masked_address(address)) { + default: return 0xff; + case 0: return this->read_vram(); + case 1: return this->read_register(); + case 2: return this->read_palette(); + case 3: return this->read_register_indirect(); + } +} + +// MARK: - Ephemeral state. + template uint8_t TMS9918::get_current_line() const { // Determine the row to return. @@ -682,26 +760,6 @@ uint8_t TMS9918::get_current_line() const { return uint8_t(source_row); } - -template -uint8_t TMS9918::read(int address) { - this->write_phase_ = false; - - // Reads from address 0 read video RAM, via the read-ahead buffer. - if(!(address & 1)) { - // Enqueue the write to occur at the next available slot. - const uint8_t result = this->read_ahead_buffer_; - this->queued_access_ = MemoryAccess::Read; - return result; - } - - // Reads from address 1 get the status register. - const uint8_t result = this->status_; - this->status_ &= ~(StatusInterrupt | StatusSpriteOverflow | StatusSpriteCollision); - this->line_interrupt_pending_ = false; - return result; -} - template HalfCycles TMS9918::get_next_sequence_point() const { if(!this->generate_interrupts_ && !this->enable_line_interrupts_) return HalfCycles::max(); diff --git a/Components/9918/Implementation/9918Base.hpp b/Components/9918/Implementation/9918Base.hpp index 6c4bef30c..06deb5b0d 100644 --- a/Components/9918/Implementation/9918Base.hpp +++ b/Components/9918/Implementation/9918Base.hpp @@ -286,6 +286,16 @@ template struct Base { size_t sprite_generator_table_address; } master_system_; + int masked_address(int address); + void write_vram(uint8_t); + void write_register(uint8_t); + void write_palette(uint8_t); + void write_register_indirect(uint8_t); + uint8_t read_vram(); + uint8_t read_register(); + uint8_t read_palette(); + uint8_t read_register_indirect(); + ScreenMode current_screen_mode() const { if(blank_display_) { return ScreenMode::Blank;