summaryrefslogtreecommitdiff
path: root/Source/Core/Common/GekkoDisassembler.cpp
AgeCommit message (Collapse)Author
2015-05-25Add missing license headersTillmann Karras
2015-05-24GekkoDisassembler: Fix typecast for the second printf param for mtfsfLioncash
2015-05-24GekkoDisassembler: Fix disassembly of mtfsf's FM fieldLioncash
2015-03-14Remove remnants of old fake opcodes.magumagu
These are illegal opcodes, and should be treated as such.
2015-01-19Minor fix with psq_st{u,}x disassembly.Ryan Houdek
2015-01-18Fixes disassembly of paired store instructions.Ryan Houdek
Someone thought it would be a good idea to have the location as the first argument on the instruction. Changed it to how it is supposed to be disassembled.
2015-01-03GekkoDisassembler: fix display of CRs in branch operationsFiora
2014-11-24Silence a few "zero as null pointer" warnings.Rohit Nirmal
2014-09-28GekkoDisassembler: show W and I in psq_l/psq_st disassemblyFiora
2014-09-21Disassembler: fix disassembly of some twi instructionsFiora
2014-09-16GekkoDisassembler: fix some float opcodesFiora
2014-09-15GekkoDisassembler: fix/improve disassembly for a few instructionsFiora
2014-08-04Common: Introduce the new Gekko disassembler to Common.Lioncash
This moves the Gekko disassembler to Common where it should be. Having it in the Bochs disassembly Externals is incorrect. Unlike the PowerPC disassembler prior however, this one is updated to have an API that is more fitting for C++. e.g. Not needing to specify a string buffer and size. It does all of this under the hood. This modifies all the DebuggingInterfaces as necessary to handle this.