Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/nicolasbauw/asm-riscv-cat
- Owner: nicolasbauw
- Created: 2024-02-04T19:59:11.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-07T13:54:23.000Z (about 1 year ago)
- Last Synced: 2024-02-08T10:51:29.993Z (about 1 year ago)
- Topics: assembly, linux, risc-v, syscalls
- Language: Assembly
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 callsMakefile will build with debug symbols, so you can have some fun with gdb :-)