From 0896956337ce2897073b3620e9a20de094eed04d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Kujawa?= Date: Tue, 24 Jul 2018 19:20:29 +0200 Subject: [PATCH] Include argument names in prototype. For doxygen purposes. --- src/rk65c02.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rk65c02.h b/src/rk65c02.h index 7ed5004..4ce02b2 100644 --- a/src/rk65c02.h +++ b/src/rk65c02.h @@ -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