mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-10 08:04:45 +00:00
21 lines
253 B
C++
21 lines
253 B
C++
//
|
|
// AccessType.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 16/01/21.
|
|
// Copyright © 2021 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
namespace InstructionSet {
|
|
|
|
enum class AccessType {
|
|
None,
|
|
Read,
|
|
Write,
|
|
ReadModifyWrite
|
|
};
|
|
|
|
}
|