summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2013-04-08 14:22:51 +0000
committer smf- <smf-@users.noreply.github.com>2013-04-08 14:22:51 +0000
commit30d1bc5a01f4eb6d1e8a2823ddd05039ac08fedc (patch)
tree39bcc555d9ce9065949182e3d2ef1eecedfa7d72
parentbeab9e30078cd796d870d14bd979bc9f495cb233 (diff)
Added comment to GTE_OP() that it's not used. This and the other two #defines that are marked as not used are probably not used on the real hardware either.(nw)
-rw-r--r--src/emu/cpu/psx/gte.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/psx/gte.h b/src/emu/cpu/psx/gte.h
index 6c9c74e6e58..df3734eb399 100644
--- a/src/emu/cpu/psx/gte.h
+++ b/src/emu/cpu/psx/gte.h
@@ -14,7 +14,7 @@
#include "emu.h"
-#define GTE_OP( op ) ( ( op >> 20 ) & 31 )
+#define GTE_OP( op ) ( ( op >> 20 ) & 31 ) /* not used */
#define GTE_SF( op ) ( ( op >> 19 ) & 1 )
#define GTE_MX( op ) ( ( op >> 17 ) & 3 )
#define GTE_V( op ) ( ( op >> 15 ) & 3 )