Files
super6502/sw/spi.h
Byron Lathi fff193ea0f Add basic spi code
Implements the bit bang spi protocol
2022-03-10 10:26:36 -06:00

8 lines
89 B
C

#ifndef _SPI_H
#define _SPI_H
#include <stdint.h>
void spi_write_byte(uint8_t);
#endif