mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-04 07:09:14 +00:00
small compile/link fixes
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2820 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
692a05bfe9
commit
59c44bd13b
3 changed files with 92 additions and 92 deletions
|
@ -23,11 +23,11 @@
|
|||
#include "DSPInterpreter.h"
|
||||
#include "DSPJit.h"
|
||||
|
||||
void unimplementedInst(UDSPInstruction& inst) {
|
||||
void unimplementedInst(const UDSPInstruction& inst) {
|
||||
PanicAlert("Unimplemented instruction %d", inst.hex);
|
||||
}
|
||||
|
||||
void nop(UDSPInstruction&) {}
|
||||
void nop(const UDSPInstruction&) {}
|
||||
|
||||
// TODO(XK): Fill up the tables with the corresponding instructions
|
||||
DSPOPCTemplate opcodes[] =
|
||||
|
@ -247,7 +247,7 @@ void DestroyInstructionTable() {
|
|||
// TODO(XK): Fill
|
||||
}
|
||||
|
||||
void ComputeInstruction(UDSPInstruction& inst) {
|
||||
void ComputeInstruction(const UDSPInstruction& inst) {
|
||||
// TODO(XK): Fill
|
||||
DSPInterpreter::unknown(inst);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue