mirror of
https://github.com/TomHarte/CLK.git
synced 2024-10-31 02:04:48 +00:00
23 lines
308 B
C++
23 lines
308 B
C++
|
//
|
||
|
// 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 {
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif /* _8000Mk2Storage_h */
|