https://github.com/neri/riscv-hello
A minimal sample of hello world for riscv
https://github.com/neri/riscv-hello
riscv rust
Last synced: 12 days ago
JSON representation
A minimal sample of hello world for riscv
- Host: GitHub
- URL: https://github.com/neri/riscv-hello
- Owner: neri
- License: unlicense
- Created: 2023-10-22T15:55:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-23T02:03:32.000Z (over 2 years ago)
- Last Synced: 2025-03-06T11:51:28.196Z (over 1 year ago)
- Topics: riscv, rust
- Language: Rust
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RISCV HELLO WORLD
- This is a minimal sample of hello world for riscv.
## REQUIREMENTS
- Rust (riscv64gc-unknown-none-elf)
- `rustup target add riscv64gc-unknown-none-elf`
- qemu-system-riscv64
## HOW TO BUILD
```
cargo build --release
```
## HOW TO RUN
```
cargo run --release
```