diff options
| author | hrydgard <hrydgard@gmail.com> | 2008-08-21 17:49:06 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2008-08-21 17:49:06 +0000 |
| commit | 3ef0eb979d7a6451ec74c9233af0487142e71896 (patch) | |
| tree | e478b0fca43ee440a6901cba180f542454d35cfd /Source/Core/VideoCommon/Src/OpcodeDecoding.h | |
| parent | 5e4da92d428adbaed6f82d20bacd54965aceb717 (diff) | |
Move some code out of the plugins into VideoCommon. No functional change.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@255 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon/Src/OpcodeDecoding.h')
| -rw-r--r-- | Source/Core/VideoCommon/Src/OpcodeDecoding.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/Src/OpcodeDecoding.h b/Source/Core/VideoCommon/Src/OpcodeDecoding.h new file mode 100644 index 0000000000..17be936dc9 --- /dev/null +++ b/Source/Core/VideoCommon/Src/OpcodeDecoding.h @@ -0,0 +1,42 @@ +// Copyright (C) 2003-2008 Dolphin Project.
+
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, version 2.0.
+
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License 2.0 for more details.
+
+// A copy of the GPL 2.0 should have been included with the program.
+// If not, see http://www.gnu.org/licenses/
+
+// Official SVN repository and contact information can be found at
+// http://code.google.com/p/dolphin-emu/
+
+#ifndef _OPCODE_DECODING_H
+#define _OPCODE_DECODING_H
+
+#define GX_NOP 0x00
+
+#define GX_LOAD_BP_REG 0x61
+#define GX_LOAD_CP_REG 0x08
+#define GX_LOAD_XF_REG 0x10
+#define GX_LOAD_INDX_A 0x20
+#define GX_LOAD_INDX_B 0x28
+#define GX_LOAD_INDX_C 0x30
+#define GX_LOAD_INDX_D 0x38
+
+#define GX_CMD_CALL_DL 0x40
+#define GX_CMD_INVL_VC 0x48
+
+#define GX_PRIMITIVE_MASK 0x78
+#define GX_PRIMITIVE_SHIFT 3
+#define GX_VAT_MASK 0x07
+
+void OpcodeDecoder_Init();
+void OpcodeDecoder_Shutdown();
+void OpcodeDecoder_Run();
+
+#endif
|
