Skip to content

Commit

Permalink
Fix glitch
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Jul 12, 2024
1 parent 8333683 commit 12fa02d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
6 changes: 3 additions & 3 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
* [Compilation on Android](install/android.md)
* [Troubleshooting](install/troubleshooting.md)
* [First Steps](first_steps/intro.md)
* [Commandline Flags](first_steps/commandline_flags.md)
* [Commandline](first_steps/commandline_flags.md)
* [Command Syntax](first_steps/syntax.md)
* [Expressions](first_steps/expressions.md)
* [Basic Debugger Session](first_steps/basic_debugger_session.md)
* [Math Expressions](first_steps/expressions.md)
* [Debugger Session](first_steps/basic_debugger_session.md)
* [Programs](tools/intro.md)
* [Rax2](tools/rax2/intro.md)
* [Rafind2](tools/rafind2/intro.md)
Expand Down
24 changes: 14 additions & 10 deletions src/first_steps/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,20 @@ trits 0t11112220022122120101211020120210210211201

Supported arithmetic operations are:

* + : addition
* - : subtraction
* (asterisk) : multiplication
* / : division
* % : modulus
* & : binary and
* | : binary or
* ^ : binary xor
* >> : shift right
* << : shift left
```
+ addition
- subtraction
* multiplication
/ division
% modulus
& binary and
| binary or
^ binary xor
>> shift right
<< shift left
```

For example, using the `?vi` command we the the integer (base10) value resulting it from evaluating the given math expression

```
[0x00000000]> ?vi 1+2+3
Expand Down

0 comments on commit 12fa02d

Please sign in to comment.