mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 23:52:26 +00:00
32 lines
493 B
C++
32 lines
493 B
C++
//
|
|
// Z80AllRAM.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 16/05/2017.
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Z80AllRAM_hpp
|
|
#define Z80AllRAM_hpp
|
|
|
|
#include "Z80.hpp"
|
|
#include "../AllRAMProcessor.hpp"
|
|
|
|
namespace CPU {
|
|
namespace Z80 {
|
|
|
|
class AllRAMProcessor:
|
|
public ::CPU::AllRAMProcessor,
|
|
public Processor<AllRAMProcessor> {
|
|
|
|
public:
|
|
AllRAMProcessor();
|
|
|
|
int perform_machine_cycle(const MachineCycle *cycle);
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* Z80AllRAM_hpp */
|