2017-03-18 00:28:07 +00:00
|
|
|
//
|
|
|
|
// CartridgeUnpaged.h
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 17/03/2017.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
2017-03-18 00:28:07 +00:00
|
|
|
//
|
|
|
|
|
2024-01-17 04:34:46 +00:00
|
|
|
#pragma once
|
2017-03-18 00:28:07 +00:00
|
|
|
|
|
|
|
#include "Cartridge.hpp"
|
|
|
|
|
2023-05-10 21:02:18 +00:00
|
|
|
namespace Atari2600::Cartridge {
|
2017-03-18 00:28:07 +00:00
|
|
|
|
2017-08-16 16:39:15 +00:00
|
|
|
class Unpaged: public BusExtender {
|
2017-03-18 18:01:04 +00:00
|
|
|
public:
|
2017-11-11 20:28:40 +00:00
|
|
|
Unpaged(uint8_t *rom_base, std::size_t rom_size) : BusExtender(rom_base, rom_size) {}
|
2017-03-18 18:01:04 +00:00
|
|
|
|
2017-05-15 02:08:15 +00:00
|
|
|
void perform_bus_operation(CPU::MOS6502::BusOperation operation, uint16_t address, uint8_t *value) {
|
2017-03-18 18:01:04 +00:00
|
|
|
if(isReadOperation(operation) && (address & 0x1000)) {
|
2017-08-16 18:02:46 +00:00
|
|
|
*value = rom_base_[address & (rom_size_ - 1)];
|
2017-03-18 18:01:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-18 00:28:07 +00:00
|
|
|
}
|