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:
XTra.KrazzY
2009-04-01 21:30:09 +00:00
parent 692a05bfe9
commit 59c44bd13b
3 changed files with 92 additions and 92 deletions

View File

@ -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);
}