diff options
| author | Peter LaFosse <peter@vector35.com> | 2018-09-12 17:03:38 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2018-09-12 17:03:38 -0400 |
| commit | 74a8547853dd66fe62d2e75b93c1b723eb6f69cf (patch) | |
| tree | 067119496c2beaf0636c955d27291d4620e17c0b /docs/getting-started.md | |
| parent | 097a2e4c8849d4938d8a027985ce3816fd9785ed (diff) | |
| parent | 59a2824b1ad36ea5d0520919e86ad779cd97cc8f (diff) | |
Merging with dev
Diffstat (limited to 'docs/getting-started.md')
| -rw-r--r-- | docs/getting-started.md | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/docs/getting-started.md b/docs/getting-started.md index 5148b9d5..59695147 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -15,11 +15,11 @@ Binaries are installed in the following locations by default: - Linux: Wherever you extract it! (No standard location) !!! Warning "Warning" - Do not put any user content in the install-path of Binary Ninja. The auto-update process of Binary Ninja may replace any files included in these folders. + Do not put any user content in the install-path of Binary Ninja. The auto-update process of Binary Ninja may replace any files included in these folders. ### User Folder -The base locations of user folders are: +The base locations of user folders are: - OS X: `~/Library/Application Support/Binary Ninja` - Linux: `~/.binaryninja` @@ -277,7 +277,15 @@ Settings are stored in the _user_ directory in the file `settings.json`. Each to | pdb | auto-download-pdb | boolean | True | Automatically download pdb files from specified symbol servers | | pdb | symbol-server-list | list(string) | ["http://msdl.microsoft.com/download/symbols"] | List of servers to query for pdb symbols. | | python | interpreter | string | "python27.{dylib,dll,so.1}" | Python interpreter to load if one is not already present when plugins are loaded | - +| arch | x86.disassemblyFlavor | string | "BN_INTEL" | "BN_INTEL", "INTEL", or "AT&T" | +| arch | x86.disassemblySeperator | string | ", " | What to put between operands in disassembly tokens | +| arch | x86.disassemblyLowercase | bool | True | Lowercase opcodes, operands, and registers (False for uppercase) | + "arch" : + { + // "x86.disassemblyFlavor" : "AT&T", + // "x86.disassemblyFlavor" : "BN_INTEL", + "x86.disassemblyLowercase" : true, + "x86.disassemblySeperator" : ", " Below is an example `settings.json` setting various options: ``` { |
