1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2025-08-07 06:30:04 +00:00
Files
kickc/src/main/kc/include/mos6529.h
2021-06-19 22:28:44 +02:00

9 lines
243 B
C

/// @file
/// MOS 6529 Single Port Interface (SPI aka PIO)
///
/// I/O controller providing a single 8-bit digital bidirectional parallel I/O port.
/// http://archive.6502.org/datasheets/mos_6529_spi.pdf
struct MOS6529_PIO {
char PORT;
};