https://github.com/jeanthom/vr88m
Disassembler for V8 microRISC architecture.
https://github.com/jeanthom/vr88m
c disassembler embedded microrisc risc v8
Last synced: 2 months ago
JSON representation
Disassembler for V8 microRISC architecture.
- Host: GitHub
- URL: https://github.com/jeanthom/vr88m
- Owner: jeanthom
- Created: 2017-02-06T14:07:30.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-03T10:59:04.000Z (over 7 years ago)
- Last Synced: 2025-01-13T08:46:48.976Z (4 months ago)
- Topics: c, disassembler, embedded, microrisc, risc, v8
- Language: C
- Homepage:
- Size: 4.88 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VR88M
vr88m is a basic disassembler for V8 microRISC architecture (used in some Micronas USB DAC chips).
## Howto
```
$ make
$ bin/vr88m -i my_binary_file.bin [-b ab12]
```* -i : input file
* -b : base address## Example
```
$ vr88m -i my_binary.bin | expand -t 10
0000: bf 35 81 JSR 0x8135
0003: ba RTI
0004: 85 PSH R5
0005: ea 7b 80 LDA R2, 0x807b
0007: e1 13 LDI R1, 0x13
``````
$ vr88m -i my_binary.bin -b 1234 | expand -t 10
1234: bf 35 81 JSR 0x8135
1237: ba RTI
1238: 85 PSH R5
1239: ea 7b 80 LDA R2, 0x807b
123b: e1 13 LDI R1, 0x13
```