diff --git a/Components/9918/Implementation/Fetch.hpp b/Components/9918/Implementation/Fetch.hpp index 4ab2a2425..16ebc1f8e 100644 --- a/Components/9918/Implementation/Fetch.hpp +++ b/Components/9918/Implementation/Fetch.hpp @@ -576,6 +576,33 @@ template void Base::fetch_yamaha(LineBuffer &line_ character_fetcher.fetch_tile_pattern(Storage::next_event_->id); break; + case ScreenMode::YamahaGraphics4: + case ScreenMode::YamahaGraphics5: { + const int column = Storage::next_event_->id << 2; + const auto start = bits<15>((y << 7) | column); + + line_buffer.bitmap[column + 0] = ram_[pattern_name_address_ & AddressT(start + 0)]; + line_buffer.bitmap[column + 1] = ram_[pattern_name_address_ & AddressT(start + 1)]; + line_buffer.bitmap[column + 2] = ram_[pattern_name_address_ & AddressT(start + 2)]; + line_buffer.bitmap[column + 3] = ram_[pattern_name_address_ & AddressT(start + 3)]; + } break; + + case ScreenMode::YamahaGraphics6: + case ScreenMode::YamahaGraphics7: { + const int column = Storage::next_event_->id << 3; + const auto start = bits<15>((y << 7) | column); + + // Fetch from alternate banks. + line_buffer.bitmap[column + 0] = ram_[rotated_name_ & AddressT(start + 0)]; + line_buffer.bitmap[column + 1] = ram2[rotated_name_ & AddressT(start + 0)]; + line_buffer.bitmap[column + 2] = ram_[rotated_name_ & AddressT(start + 1)]; + line_buffer.bitmap[column + 3] = ram2[rotated_name_ & AddressT(start + 1)]; + line_buffer.bitmap[column + 4] = ram_[rotated_name_ & AddressT(start + 2)]; + line_buffer.bitmap[column + 5] = ram2[rotated_name_ & AddressT(start + 2)]; + line_buffer.bitmap[column + 6] = ram_[rotated_name_ & AddressT(start + 3)]; + line_buffer.bitmap[column + 7] = ram2[rotated_name_ & AddressT(start + 3)]; + } break; + default: break; } break; @@ -616,44 +643,6 @@ template void Base::fetch_yamaha(LineBuffer &line_ } break; - case Type::DataBlock: - // Exactly how to fetch depends upon mode... - switch(mode) { - case ScreenMode::YamahaGraphics4: - case ScreenMode::YamahaGraphics5: { - const int column = Storage::data_block_; - Storage::data_block_ += 4; - - const auto start = bits<15>((y << 7) | column); - - line_buffer.bitmap[column + 0] = ram_[pattern_name_address_ & AddressT(start + 0)]; - line_buffer.bitmap[column + 1] = ram_[pattern_name_address_ & AddressT(start + 1)]; - line_buffer.bitmap[column + 2] = ram_[pattern_name_address_ & AddressT(start + 2)]; - line_buffer.bitmap[column + 3] = ram_[pattern_name_address_ & AddressT(start + 3)]; - } break; - - case ScreenMode::YamahaGraphics6: - case ScreenMode::YamahaGraphics7: { - const int column = Storage::data_block_ << 1; - Storage::data_block_ += 4; - - const auto start = bits<15>((y << 7) | column); - - // Fetch from alternate banks. - line_buffer.bitmap[column + 0] = ram_[rotated_name_ & AddressT(start + 0)]; - line_buffer.bitmap[column + 1] = ram2[rotated_name_ & AddressT(start + 0)]; - line_buffer.bitmap[column + 2] = ram_[rotated_name_ & AddressT(start + 1)]; - line_buffer.bitmap[column + 3] = ram2[rotated_name_ & AddressT(start + 1)]; - line_buffer.bitmap[column + 4] = ram_[rotated_name_ & AddressT(start + 2)]; - line_buffer.bitmap[column + 5] = ram2[rotated_name_ & AddressT(start + 2)]; - line_buffer.bitmap[column + 6] = ram_[rotated_name_ & AddressT(start + 3)]; - line_buffer.bitmap[column + 7] = ram2[rotated_name_ & AddressT(start + 3)]; - } break; - - default: break; - } - break; - default: break; } diff --git a/Components/9918/Implementation/Storage.hpp b/Components/9918/Implementation/Storage.hpp index bd0f0dac1..99516cc78 100644 --- a/Components/9918/Implementation/Storage.hpp +++ b/Components/9918/Implementation/Storage.hpp @@ -56,11 +56,6 @@ template struct Storage struct Storage struct Storage struct Storage struct Storage