mirror of
https://github.com/86Box/86Box.git
synced 2026-02-24 20:35:32 -07:00
10 lines
188 B
C
10 lines
188 B
C
typedef struct mpu401_uart_t
|
|
{
|
|
uint8_t status;
|
|
uint8_t rx_data;
|
|
|
|
int uart_mode;
|
|
} mpu401_uart_t;
|
|
|
|
void mpu401_uart_init(mpu401_uart_t *mpu, uint16_t addr);
|