1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-03 10:54:46 +00:00
CLK/Processors/68000Mk2/Implementation/68000Mk2Storage.hpp

28 lines
400 B
C++
Raw Normal View History

2022-05-16 15:44:16 +00:00
//
// 68000Mk2Storage.hpp
// Clock Signal
//
// Created by Thomas Harte on 16/05/2022.
// Copyright © 2022 Thomas Harte. All rights reserved.
//
#ifndef _8000Mk2Storage_h
#define _8000Mk2Storage_h
namespace CPU {
namespace MC68000Mk2 {
struct ProcessorBase {
enum State: int {
Reset = -1,
};
2022-05-16 15:44:16 +00:00
HalfCycles time_remaining;
int state = State::Reset;
2022-05-16 15:44:16 +00:00
};
}
}
#endif /* _8000Mk2Storage_h */