Skip to content

Commit

Permalink
Naming consistency.
Browse files Browse the repository at this point in the history
  • Loading branch information
redcode committed Jul 14, 2023
1 parent 875f692 commit 19f9b47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/Z80.c
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ static Z_INLINE zuint8 m(Z80 *self, zuint8 offset, zuint8 value)
/* MARK: - Function Shortcuts and Reusable Code */

#define INSN(name) static zuint8 name(Z80 *self)
#define N(index) ((DATA[index] >> 3) & 7)
#define N(offset) ((DATA[offset] >> 3) & 7)
#define Z(mask) zzz(self, mask)
#define U0(value) uuu(self, 0, value)
#define U1(value) uuu(self, 1, value)
Expand Down

0 comments on commit 19f9b47

Please sign in to comment.