2017-03-18 19:04:01 +00:00
|
|
|
//
|
|
|
|
// CartridgeAtari8k.h
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 18/03/2017.
|
|
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef CartridgeAtari8k_h
|
|
|
|
#define CartridgeAtari8k_h
|
|
|
|
|
|
|
|
#include "Cartridge.hpp"
|
|
|
|
|
|
|
|
namespace Atari2600 {
|
|
|
|
|
2017-03-18 21:04:01 +00:00
|
|
|
class CartridgeAtari8k: public Cartridge<CartridgeAtari8k> {
|
2017-03-18 19:04:01 +00:00
|
|
|
public:
|
|
|
|
CartridgeAtari8k(const std::vector<uint8_t> &rom) :
|
|
|
|
Cartridge(rom) {
|
|
|
|
rom_ptr_ = rom_.data();
|
|
|
|
}
|
|
|
|
|
|
|
|
void perform_bus_operation(CPU6502::BusOperation operation, uint16_t address, uint8_t *value) {
|
|
|
|
address &= 0x1fff;
|
|
|
|
if(!(address & 0x1000)) return;
|
|
|
|
|
|
|
|
if(address == 0x1ff8) rom_ptr_ = rom_.data();
|
|
|
|
else if(address == 0x1ff9) rom_ptr_ = rom_.data() + 4096;
|
|
|
|
|
|
|
|
if(isReadOperation(operation)) {
|
|
|
|
*value = rom_ptr_[address & 4095];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
uint8_t *rom_ptr_;
|
|
|
|
};
|
|
|
|
|
2017-03-18 21:04:01 +00:00
|
|
|
class CartridgeAtari8kSuperChip: public Cartridge<CartridgeAtari8kSuperChip> {
|
2017-03-18 19:04:01 +00:00
|
|
|
public:
|
|
|
|
CartridgeAtari8kSuperChip(const std::vector<uint8_t> &rom) :
|
|
|
|
Cartridge(rom) {
|
|
|
|
rom_ptr_ = rom_.data();
|
|
|
|
}
|
|
|
|
|
|
|
|
void perform_bus_operation(CPU6502::BusOperation operation, uint16_t address, uint8_t *value) {
|
|
|
|
address &= 0x1fff;
|
|
|
|
if(!(address & 0x1000)) return;
|
|
|
|
|
|
|
|
if(address == 0x1ff8) rom_ptr_ = rom_.data();
|
|
|
|
if(address == 0x1ff9) rom_ptr_ = rom_.data() + 4096;
|
|
|
|
|
|
|
|
if(isReadOperation(operation)) {
|
|
|
|
*value = rom_ptr_[address & 4095];
|
|
|
|
}
|
|
|
|
|
|
|
|
if(address < 0x1080) ram_[address & 0x7f] = *value;
|
|
|
|
else if(address < 0x1100 && isReadOperation(operation)) *value = ram_[address & 0x7f];
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
uint8_t *rom_ptr_;
|
|
|
|
uint8_t ram_[128];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CartridgeAtari8k_h */
|