mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-05 21:05:51 +00:00
23 lines
346 B
C++
23 lines
346 B
C++
//
|
|
// Model.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 15/04/2022.
|
|
// Copyright © 2022 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef InstructionSets_M68k_Model_hpp
|
|
#define InstructionSets_M68k_Model_hpp
|
|
|
|
namespace InstructionSet {
|
|
namespace M68k {
|
|
|
|
enum class Model {
|
|
M68000,
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* InstructionSets_M68k_Model_hpp */
|