1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-01 22:41:32 +00:00
CLK/InstructionSets/AccessType.hpp

21 lines
253 B
C++
Raw Permalink Normal View History

2021-01-17 01:04:01 +00:00
//
// AccessType.h
// Clock Signal
//
// Created by Thomas Harte on 16/01/21.
2021-01-17 01:04:01 +00:00
// Copyright © 2021 Thomas Harte. All rights reserved.
//
#pragma once
2021-01-17 01:04:01 +00:00
namespace InstructionSet {
enum class AccessType {
None,
Read,
Write,
ReadModifyWrite
};
}