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

Make function declerations proper prototypes.

This commit is contained in:
Radosław Kujawa 2018-07-24 19:20:06 +02:00
parent 61cc5d2c68
commit b1d001113f
No known key found for this signature in database
GPG Key ID: 18A71CD0FD7270D7

View File

@ -18,8 +18,8 @@ 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();
bus_t bus_init_with_default_devs();
bus_t bus_init(void);
bus_t bus_init_with_default_devs(void);
void bus_finish(bus_t *);
bool bus_load_file(bus_t *, uint16_t, const char *);
bool bus_load_buf(bus_t *, uint16_t, uint8_t *, uint16_t);