1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-16 15:29:34 +00:00
CLK/InstructionSets/M68k/Model.hpp
2024-01-16 23:34:46 -05:00

22 lines
259 B
C++

//
// Model.hpp
// Clock Signal
//
// Created by Thomas Harte on 15/04/2022.
// Copyright © 2022 Thomas Harte. All rights reserved.
//
#pragma once
namespace InstructionSet::M68k {
enum class Model {
M68000,
M68010,
M68020,
M68030,
M68040,
};
}