From 328b2b1c7c7c1269b7653e9482dc7da66e99b902 Mon Sep 17 00:00:00 2001 From: redcode Date: Thu, 1 Nov 2018 07:50:08 +0100 Subject: [PATCH] Doxygen comments. --- API/emulation/CPU/Z80.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/API/emulation/CPU/Z80.h b/API/emulation/CPU/Z80.h index 7b3a68f..38eae98 100644 --- a/API/emulation/CPU/Z80.h +++ b/API/emulation/CPU/Z80.h @@ -27,11 +27,11 @@ this library. If not, see . */ #endif /** Z80 emulator instance object. - * @details This structure holds, among other things, the state of the CPU and - * the pointers to the callback functions needed to connect the emulator with - * your code. There is no constructor function, so you need to initialize some - * of its members before using it. Specifically the following: @c context, @c - * read, @c write, @c in, @c out, @c int_data and @c halt. */ + * @details This structure contains the state of the emulated CPU and callback + * pointers necessary to interconnect the emulator with external logic. There + * is no constructor function, so, before using a structure of this type, some + * of its members must have been initialized, in particular the following: + * @c context, @c read, @c write, @c in, @c out, @c int_data and @c halt. */ typedef struct {