Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/xujiandong/riscv-naive-assembler

A naive assembler for RISC-V, only some special instructions are supported: B-Extension.
https://github.com/xujiandong/riscv-naive-assembler

Last synced: about 2 months ago
JSON representation

A naive assembler for RISC-V, only some special instructions are supported: B-Extension.

Awesome Lists containing this project

README

        

# riscv-naive-assembler
A naive assembler for RISC-V, only some special instructions are supported: B-Extension.

# Usage
```text
riscv-naive-assembler --input in.S
```
or
```text
cat in.S | riscv-naive-assembler
```
It can only convert RISC-V extension instructions into .byte instructions. Other instructions are dumped directly.