Include argument names in prototype.

For doxygen purposes.
This commit is contained in:
Radosław Kujawa 2018-07-24 19:20:29 +02:00
parent b1d001113f
commit 0896956337
No known key found for this signature in database
GPG Key ID: 18A71CD0FD7270D7
1 changed files with 2 additions and 1 deletions

View File

@ -141,7 +141,8 @@ void rk65c02_panic(rk65c02emu_t *e, const char *fmt, ...);
* @param b Pre-existing bus configuration, pass NULL if default requested.
* @return New instance of the emulator prepared to run the ROM.
*/
rk65c02emu_t rk65c02_load_rom(const char *, uint16_t, bus_t *);
rk65c02emu_t rk65c02_load_rom(const char *path, uint16_t load_addr,
bus_t *b);
#endif