This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/xenia/cpu/backend/x64/x64_sequences.cc b/src/xenia/cpu/backend/x64/x64_sequences.cc | |
| index f6a688b0..4cc82d2d 100644 | |
| --- a/src/xenia/cpu/backend/x64/x64_sequences.cc | |
| +++ b/src/xenia/cpu/backend/x64/x64_sequences.cc | |
| @@ -54,6 +54,112 @@ using xe::cpu::hir::Instr; | |
| typedef bool (*SequenceSelectFn)(X64Emitter&, const Instr*); | |
| std::unordered_map<uint32_t, SequenceSelectFn> sequence_table; | |
| +typedef struct { | |
| + xe::be<uint32_t> vtbl; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Saves function names and addresses for Xenia | |
| //@author Maxton | |
| //@category Functions | |
| //@keybinding | |
| //@menupath File.Export Xenia Map File... | |
| //@toolbar | |
| import java.io.File; | |
| import java.io.FileOutputStream; | |
| import java.io.PrintWriter; |