mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-19 04:09:44 -06: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:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user