1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-06-08 06:29:30 +00:00

Add missing argument to bus_finish() prototype.

This commit is contained in:
Radosław Kujawa 2017-01-16 22:55:42 +01:00
parent 0a43717337
commit b446b08271

View File

@ -14,7 +14,7 @@ typedef struct bus_tag bus_t;
uint8_t bus_read_1(bus_t *, uint16_t);
void bus_write_1(bus_t *, uint16_t, uint8_t);
bus_t bus_init();
void bus_finish();
void bus_finish(bus_t *);
#endif /* _BUS_H_ */