mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 23:32:28 +00:00
27 lines
358 B
C++
27 lines
358 B
C++
//
|
|
// i8272.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 05/08/2017.
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef i8272_hpp
|
|
#define i8272_hpp
|
|
|
|
#include <cstdint>
|
|
|
|
namespace Intel {
|
|
|
|
class i8272 {
|
|
public:
|
|
|
|
void set_register(int address, uint8_t value);
|
|
uint8_t get_register(int address);
|
|
};
|
|
|
|
}
|
|
|
|
|
|
#endif /* i8272_hpp */
|