From 07c2719d5c926e4f2f53b35755df1daf3ed17b4b Mon Sep 17 00:00:00 2001 From: redcode Date: Fri, 5 Jan 2024 14:29:43 -0500 Subject: [PATCH] Doxygen comments. --- API/Z80.h | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/API/Z80.h b/API/Z80.h index d0b35f3..66061cd 100644 --- a/API/Z80.h +++ b/API/Z80.h @@ -674,23 +674,19 @@ struct Z80 { #define Z80_XYL(object) (object).xy.uint8_values.at_0 -/** @brief Accesses the most significant byte of the IX register of a - * @ref Z80 @p object. */ +/** @brief Accesses the IXH register of a @ref Z80 @p object. */ #define Z80_IXH(object) (object).ix_iy[0].uint8_values.at_1 -/** @brief Accesses the least significant byte of the IX register of a - * @ref Z80 @p object. */ +/** @brief Accesses the IXL register of a @ref Z80 @p object. */ #define Z80_IXL(object) (object).ix_iy[0].uint8_values.at_0 -/** @brief Accesses the most significant byte of the IY register of a - * @ref Z80 @p object. */ +/** @brief Accesses the IYH register of a @ref Z80 @p object. */ #define Z80_IYH(object) (object).ix_iy[1].uint8_values.at_1 -/** @brief Accesses the least significant byte of the IY register of a - * @ref Z80 @p object. */ +/** @brief Accesses the IYL register of a @ref Z80 @p object. */ #define Z80_IYL(object) (object).ix_iy[1].uint8_values.at_0