pureikyubu/build/Data/Json/HWJdi.json
ogamespec b999171f38 Wiki
2023-08-08 12:33:10 +03:00

57 lines
1.4 KiB
JSON

{
"info": {
"description": "Various commands for debugging hardware (Flipper). Available only after emulation has been started.",
"helpGroup": "HW Debug Commands"
},
"can": {
"ramload": {
"help": "Load binary file to main memory",
"args": 2,
"usage": [
"Syntax: ramload <file> <address>\n",
"Example of use: ramload lomem.bin 0x80000000\n"
]
},
"ramsave": {
"help": "Save main memory content to file",
"args": 3,
"usage": [
"Syntax: ramsave <file> <address> <size>\n",
"Example of use: ramsave lomem.bin 0x80000000 0x3300\n"
]
},
"aramload": {
"help": "Load binary file to ARAM",
"args": 2,
"usage": [
"Syntax: aramload <file> <address>\n",
"Example of use: aramload samples.bin 0x10000\n"
]
},
"aramsave": {
"help": "Save ARAM content to file",
"args": 3,
"usage": [
"Syntax: aramsave <file> <address> <size>\n",
"Example of use: aramsave samples.bin 0x10000 0x200\n"
]
},
"nvi": {
"help": "Run emulation until the next VI interrupt. You can perform frame-by-frame emulation from a VI perspective"
},
"npe": {
"help": "Run emulation until the next PE interrupt (Done/Token). You can perform frame-by-frame emulation from the GFX Engine perspective"
}
},
"todo": [ "Parametrize input/output Arrays"]
}