mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-17 10:06:21 +00:00
20 lines
286 B
C++
20 lines
286 B
C++
|
//
|
||
|
// CMOSRAM.hpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 20/03/2024.
|
||
|
// Copyright © 2024 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "../../../Components/I2C/I2C.hpp"
|
||
|
|
||
|
namespace Archimedes {
|
||
|
|
||
|
struct CMOSRAM: public I2C::Peripheral {
|
||
|
// All TODO.
|
||
|
};
|
||
|
|
||
|
}
|