7#ifndef ZEPHYR_INCLUDE_DRIVERS_MFD_MC146818_H_
8#define ZEPHYR_INCLUDE_DRIVERS_MFD_MC146818_H_
uint8_t mfd_mc146818_ext_read(const struct device *dev, uint8_t offset)
Read the value at the given offset in extended memory bank.
uint8_t mfd_mc146818_std_read(const struct device *dev, uint8_t offset)
Read the value at the given offset in standard memory bank.
void mfd_mc146818_std_write(const struct device *dev, uint8_t offset, uint8_t value)
Write the value at the given offset in standard memory bank.
void mfd_mc146818_ext_write(const struct device *dev, uint8_t offset, uint8_t value)
Write the value at the given offset in extended memory bank.
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
Runtime device structure (in ROM) per driver instance.
Definition device.h:510