1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2024-11-21 15:08:08 +00:00

Fixed conf file example block.

This commit is contained in:
Andrei Vlad LUTAS 2024-09-23 20:25:56 +03:00
parent 34a0880784
commit b67fd766a1

View File

@ -36,19 +36,18 @@ Note that bddisasm will be run with the `-exi` option, in order to dump all poss
# Configuration File # Configuration File
The configuration file contains a list of entries that each describe a test. The configuration file contains a list of entries that each describe a test.
Each entry in the configuration file has the following structure: Each entry in the configuration file has the following structure:
``` ```
[ [
... ...
{ {
"f_source": "path/to/file.asm", # the path to .asm file "f_source": "path/to/file.asm", # the path to .asm file
"f_result": "path/to/file.result", # the path to .result file "f_result": "path/to/file.result", # the path to .result file
"f_test": "path/to/file.test", # the path to .test file "f_test": "path/to/file.test", # the path to .test file
"options": "disasmtool option", # options for disasmtool "options": "disasmtool option", # options for disasmtool
"command": "disasmtool command" # command for disasmtool (decode/shemu) "command": "disasmtool command" # command for disasmtool (decode/shemu)
} }
... ...
] ]
```
```
NOTE: The paths in the configuration file are relative to it. NOTE: The paths in the configuration file are relative to it.