2017-03-18 17:34:34 -04:00
|
|
|
//
|
|
|
|
// CartridgeAtari8k.h
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 18/03/2017.
|
2018-05-13 15:19:52 -04:00
|
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
2017-03-18 17:34:34 -04:00
|
|
|
//
|
|
|
|
|
2024-01-16 23:34:46 -05:00
|
|
|
#pragma once
|
2017-03-18 17:34:34 -04:00
|
|
|
|
|
|
|
#include "Cartridge.hpp"
|
|
|
|
|
2023-05-10 16:02:18 -05:00
|
|
|
namespace Atari2600::Cartridge {
|
2017-03-18 17:34:34 -04:00
|
|
|
|
2017-08-16 12:39:15 -04:00
|
|
|
class Atari32k: public BusExtender {
|
2024-12-01 21:44:14 -05:00
|
|
|
public:
|
|
|
|
Atari32k(const uint8_t *const rom_base, const std::size_t rom_size)
|
|
|
|
: BusExtender(rom_base, rom_size), rom_ptr_(rom_base) {}
|
2017-03-18 17:34:34 -04:00
|
|
|
|
2024-12-01 21:44:14 -05:00
|
|
|
void perform_bus_operation(
|
|
|
|
const CPU::MOS6502::BusOperation operation,
|
|
|
|
uint16_t address,
|
|
|
|
uint8_t *const value
|
|
|
|
) {
|
|
|
|
address &= 0x1fff;
|
|
|
|
if(!(address & 0x1000)) return;
|
2017-03-18 17:34:34 -04:00
|
|
|
|
2024-12-01 21:44:14 -05:00
|
|
|
if(address >= 0x1ff4 && address <= 0x1ffb) rom_ptr_ = rom_base_ + (address - 0x1ff4) * 4096;
|
2017-03-18 17:34:34 -04:00
|
|
|
|
2024-12-01 21:44:14 -05:00
|
|
|
if(isReadOperation(operation)) {
|
|
|
|
*value = rom_ptr_[address & 4095];
|
2017-03-18 17:34:34 -04:00
|
|
|
}
|
2024-12-01 21:44:14 -05:00
|
|
|
}
|
2017-03-18 17:34:34 -04:00
|
|
|
|
2024-12-01 21:44:14 -05:00
|
|
|
private:
|
|
|
|
const uint8_t *rom_ptr_;
|
2017-03-18 17:34:34 -04:00
|
|
|
};
|
|
|
|
|
2017-08-16 12:39:15 -04:00
|
|
|
class Atari32kSuperChip: public BusExtender {
|
2024-12-01 21:44:14 -05:00
|
|
|
public:
|
|
|
|
Atari32kSuperChip(const uint8_t *const rom_base, const std::size_t rom_size)
|
|
|
|
: BusExtender(rom_base, rom_size), rom_ptr_(rom_base) {}
|
2017-03-18 17:34:34 -04:00
|
|
|
|
2024-12-01 21:44:14 -05:00
|
|
|
void perform_bus_operation(
|
|
|
|
const CPU::MOS6502::BusOperation operation,
|
|
|
|
uint16_t address,
|
|
|
|
uint8_t *const value
|
|
|
|
) {
|
|
|
|
address &= 0x1fff;
|
|
|
|
if(!(address & 0x1000)) return;
|
2017-03-18 17:34:34 -04:00
|
|
|
|
2024-12-01 21:44:14 -05:00
|
|
|
if(address >= 0x1ff4 && address <= 0x1ffb) rom_ptr_ = rom_base_ + (address - 0x1ff4) * 4096;
|
2017-03-18 17:34:34 -04:00
|
|
|
|
2024-12-01 21:44:14 -05:00
|
|
|
if(isReadOperation(operation)) {
|
|
|
|
*value = rom_ptr_[address & 4095];
|
2017-03-18 17:34:34 -04:00
|
|
|
}
|
|
|
|
|
2024-12-01 21:44:14 -05:00
|
|
|
if(address < 0x1080) ram_[address & 0x7f] = *value;
|
|
|
|
else if(address < 0x1100 && isReadOperation(operation)) *value = ram_[address & 0x7f];
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const uint8_t *rom_ptr_;
|
|
|
|
uint8_t ram_[128];
|
2017-03-18 17:34:34 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|