Skip to content

Commit

Permalink
Merge pull request #172 from ogamespec/80-fifo-parser
Browse files Browse the repository at this point in the history
Fifo fixes
  • Loading branch information
ogamespec authored Aug 27, 2020
2 parents 498c52a + c5f82be commit e2faf01
Show file tree
Hide file tree
Showing 27 changed files with 562 additions and 283 deletions.
30 changes: 12 additions & 18 deletions Data/DefaultSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@
{
"DOLDEBUG": false,
"FILTER": 4294967295,
"LASTDIR_ALL": ".\\",
"LASTDIR_DVD": ".\\",
"LASTDIR_MAP": ".\\Data",
"LASTDIR_PATCH": ".\\Data",
"LASTDIR_ALL": "./",
"LASTDIR_DVD": "./",
"LASTDIR_MAP": "./Data",
"LASTDIR_PATCH": "./Data",
"LASTFILE": "",
"ONTOP": false,
"PATH": ".\\",
"PROFILE": true,
"PATH": "./",
"RECENT0": "",
"RECENT1": "",
"RECENT2": "",
Expand All @@ -24,34 +23,29 @@
"RECENTNUM": 0,
"RUNONCE": true,
"SELECTOR": true,
"SMALLICONS": false,
"SMALLICONS": true,
"SORTVIEW": 1
},

"loader":
{
"BINORG": 12544,
"MAKEMAP": true,
"PATCH": true
},

"core":
{
"MAKEMAP": true
},

"hardware":
{
"ANSI": "Data\\AnsiFont.szp",
"SJIS": "Data\\SjisFont.szp",
"ANSI": "Data/AnsiFont.szp",
"SJIS": "Data/SjisFont.szp",
"CONSOLE": 3,
"EXI_LOG": true,
"OS_REPORT": true,
"RSWHACK": true,
"VI_LOG": false,
"VI_XFB": true,
"BOOTROM": "",
"DSP_DROM": "",
"DSP_IROM": "",
"BOOTROM": "Data/gc-ntsc-10.bin",
"DSP_DROM": "Data/dsp_drom.bin",
"DSP_IROM": "Data/dsp_irom.bin",
},

"hle":
Expand Down
14 changes: 14 additions & 0 deletions Data/Json/DolwinVideoJdi.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"info": {
"description": "DolwinVideo Commands",
"helpGroup": "DolwinVideo Debug Commands"
},

"can": {

"DumpVat": {
"help": "Dump CommandProcessor VCD/VAT settings"
}

}
}
20 changes: 20 additions & 0 deletions Data/Json/UIJdi.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,26 @@
"internal": true,
"help": "Return UI Render Target object",
"output": "Int"
},

"d": {
"help": "Set memory address to view in debugger",
"args": 1,
"hints": "<address>",
"usage": [
"Syntax: d <address>\n",
"Example: d 0x80003000\n"
]
},

"u": {
"help": "Set memory address for viewing disassembled Gekko code",
"args": 1,
"hints": "<address>",
"usage": [
"Syntax: u <address>\n",
"Example: u 0x80003000\n"
]
}

}
Expand Down
Loading

0 comments on commit e2faf01

Please sign in to comment.