mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-05 06:05:27 +00:00
31 lines
521 B
C++
31 lines
521 B
C++
//
|
|
// Model.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 27/02/2022.
|
|
// Copyright © 2022 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Model_h
|
|
#define Model_h
|
|
|
|
#include <cstdint>
|
|
|
|
namespace InstructionSet::x86 {
|
|
|
|
enum class Model {
|
|
i8086,
|
|
i80186,
|
|
i80286,
|
|
i80386,
|
|
};
|
|
|
|
static constexpr bool is_32bit(Model model) { return model >= Model::i80386; }
|
|
|
|
template <bool is_32bit> struct AddressT { using type = uint16_t; };
|
|
template <> struct AddressT<true> { using type = uint32_t; };
|
|
|
|
}
|
|
|
|
#endif /* Model_h */
|