An open API service indexing awesome lists of open source software.

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.

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
```