-
Notifications
You must be signed in to change notification settings - Fork 584
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools/litex_client: Added --endianness argument to support little-end…
…ian and big-endian memory accesses. Usage: 1. Read memory to a file with big-endian byte order: ./litex_cli --read 0x1000 --length 16 --file output.bin --endianness big 2. Write memory from a file with big-endian byte order: ./litex_cli --write 0x1000 --file input.bin --length 16 --endianness big 3. Read memory to console with little-endian byte order (default): ./litex_cli --read 0x1000 --length 16 4. Write memory from console with little-endian byte order (default): ./litex_cli --write 0x1000 0x12345678
- Loading branch information
1 parent
95f37a8
commit 71e802a
Showing
1 changed file
with
34 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters