]> git.sesse.net Git - pistorm/blob - platforms/shared/rtc.h
Add license information to source
[pistorm] / platforms / shared / rtc.h
1 // SPDX-License-Identifier: MIT
2
3 void put_rtc_byte(uint32_t address_, uint8_t value, uint8_t rtc_type);
4 uint8_t get_rtc_byte(uint32_t address_, uint8_t rtc_type);
5
6 enum rtc_types {
7     RTC_TYPE_MSM,
8     RTC_TYPE_RICOH,
9     RTC_TYPE_NONE,
10 };