mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-01 10:05:55 +00:00
5f413a38df
I'd failed to configure my new computer appropriately, it seems.
25 lines
310 B
C++
25 lines
310 B
C++
//
|
|
// AccessType.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 16/01/21.
|
|
// Copyright © 2021 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef AccessType_h
|
|
#define AccessType_h
|
|
|
|
namespace InstructionSet {
|
|
|
|
enum class AccessType {
|
|
None,
|
|
Read,
|
|
Write,
|
|
ReadModifyWrite
|
|
};
|
|
|
|
}
|
|
|
|
|
|
#endif /* AccessType_h */
|