mirror of
https://gitlab.com/camelot/kickc.git
synced 2025-08-07 06:30:04 +00:00
9 lines
243 B
C
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;
|
|
}; |