mirror of
https://github.com/rkujawa/rk65c02.git
synced 2025-01-19 03:30:46 +00:00
11 lines
179 B
C
11 lines
179 B
C
#ifndef _DEVICE_SERIAL_H_
|
|
#define _DEVICE_SERIAL_H_
|
|
|
|
#include "device.h"
|
|
|
|
device_t * device_serial_init();
|
|
void device_serial_finish(device_t *);
|
|
|
|
#endif /* _DEVICE_SERIAL_H_ */
|
|
|