Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nicolasbauw/asm-riscv-cat

A basic version of the 'cat' command, written in RISC-V assembly (linux)
https://github.com/nicolasbauw/asm-riscv-cat

assembly linux risc-v syscalls

Last synced: 6 days ago
JSON representation

A basic version of the 'cat' command, written in RISC-V assembly (linux)

Awesome Lists containing this project

README

        

# cat command written in RISC-V assembly (linux)

This is a very basic ```cat``` command written from scratch in 64 bits RISC-V assembly.
It just opens a file and displays it.

The source shows how to:
- use command line arguments
- make system calls

Makefile will build with debug symbols, so you can have some fun with gdb :-)