Skip to content

Commit

Permalink
Doxygen comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
redcode committed Jan 5, 2024
1 parent 16f2442 commit 07c2719
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions API/Z80.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
* <tt>@ref Z80</tt> @p object. */
/** @brief Accesses the IXH register of a <tt>@ref Z80</tt> @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
* <tt>@ref Z80</tt> @p object. */
/** @brief Accesses the IXL register of a <tt>@ref Z80</tt> @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
* <tt>@ref Z80</tt> @p object. */
/** @brief Accesses the IYH register of a <tt>@ref Z80</tt> @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
* <tt>@ref Z80</tt> @p object. */
/** @brief Accesses the IYL register of a <tt>@ref Z80</tt> @p object. */

#define Z80_IYL(object) (object).ix_iy[1].uint8_values.at_0

Expand Down

0 comments on commit 07c2719

Please sign in to comment.