diff options
| author | hrydgard <hrydgard@gmail.com> | 2009-04-14 22:30:31 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2009-04-14 22:30:31 +0000 |
| commit | d973a9e0011acd93e2ed306aa423d0aa9b516c4a (patch) | |
| tree | 4be007deef61e86fb35a69a400dad476dbe5b388 /Source/Core/DSPCore/Src/DSPTables.cpp | |
| parent | f9903f2054cc94195638e077a3142a4146acfad6 (diff) | |
DSP: Give the assembler and disassembler saner public APIs. Fix bug in fileutil ReadFileToString. More cleanup.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2970 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore/Src/DSPTables.cpp')
| -rw-r--r-- | Source/Core/DSPCore/Src/DSPTables.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DSPCore/Src/DSPTables.cpp b/Source/Core/DSPCore/Src/DSPTables.cpp index 025a018bba..a1d3222906 100644 --- a/Source/Core/DSPCore/Src/DSPTables.cpp +++ b/Source/Core/DSPCore/Src/DSPTables.cpp @@ -352,8 +352,8 @@ const DSPOPCTemplate opcodes_ext[] = {"XXX", 0x0000, 0x0000, nop, nop, 1, 1, {{P_VAL, 1, 0, 0, 0x00ff}}, NULL, NULL,},
};
-const u32 opcodes_size = sizeof(opcodes) / sizeof(DSPOPCTemplate);
-const u32 opcodes_ext_size = sizeof(opcodes_ext) / sizeof(DSPOPCTemplate);
+const int opcodes_size = sizeof(opcodes) / sizeof(DSPOPCTemplate);
+const int opcodes_ext_size = sizeof(opcodes_ext) / sizeof(DSPOPCTemplate);
const pdlabel_t pdlabels[] =
{
|
