1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00
CLK/InstructionSets/M68k/Model.hpp

22 lines
259 B
C++
Raw Permalink Normal View History

//
// Model.hpp
// Clock Signal
//
// Created by Thomas Harte on 15/04/2022.
// Copyright © 2022 Thomas Harte. All rights reserved.
//
#pragma once
2023-05-10 21:02:18 +00:00
namespace InstructionSet::M68k {
enum class Model {
M68000,
2022-04-18 18:42:31 +00:00
M68010,
M68020,
M68030,
M68040,
};
}