1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-27 02:55:07 +00:00
CLK/Processors/6502/6502AllRAM.hpp

32 lines
542 B
C++
Raw Normal View History

//
// 6502AllRAM.hpp
// CLK
//
// Created by Thomas Harte on 13/07/2015.
// Copyright © 2015 Thomas Harte. All rights reserved.
//
#ifndef MOS6502AllRAM_cpp
#define MOS6502AllRAM_cpp
#include "6502.hpp"
#include "../AllRAMProcessor.hpp"
namespace CPU {
namespace MOS6502 {
class AllRAMProcessor:
public ::CPU::AllRAMProcessor,
public Processor<AllRAMProcessor> {
public:
AllRAMProcessor();
int perform_bus_operation(MOS6502::BusOperation operation, uint16_t address, uint8_t *value);
};
}
}
#endif /* MOS6502AllRAM_cpp */