diff --git a/README.md b/README.md index 96b8c6e..1b80d24 100644 --- a/README.md +++ b/README.md @@ -39,16 +39,23 @@ It also allows changing individual bits in the binary. #### Navigation in interactive mode To move around use the arrow keys, or use _vi_ key bindings : h j k l . +Leave the program by pressing q . +##### Binary specific movement You can toggle a bit bit using the space key. +You can jump a byte forward using w and backwards one byte using b . -Reducing or extending the bit width interactively is also very easy, just use: +#### Bitwise operation in interactive mode - ! for 8bit, @ for 16Bit, $ for 32Bit and * for 64Bit. +##### Setting the bit width: +Reducing or extending the bit width interactively is also very easy, just use: + ! for 8bit, @ for 16Bit, $ for 32Bit and * for 64Bit. When changing the bit width, the number is *masked* with the new width, so you might lost precision, use with care. -Leave the program by pressing q . +##### NOT: + +Press ~ to perform the NOT operator. ## Installation