https://github.com/technosf/riscvasmpoc
RISC-V Assembler POC for the ESP32-C3
https://github.com/technosf/riscvasmpoc
Last synced: 9 months ago
JSON representation
RISC-V Assembler POC for the ESP32-C3
- Host: GitHub
- URL: https://github.com/technosf/riscvasmpoc
- Owner: technosf
- License: gpl-3.0
- Created: 2021-09-26T04:01:18.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-05T23:46:48.000Z (over 4 years ago)
- Last Synced: 2025-07-09T01:12:42.852Z (12 months ago)
- Language: C
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RiscVAsmPOC
*RISC-V Assembler POC for the ESP32-C3*
**C** call to **RISC-V ASM** routine that passes a variable and a pointer and expects an output value.
The ASM routine, moves the pointer dereference value to the output and replaces it with the passed in variable.
C then displays the value of the output.
## Output
```
Calling the ASM C header with values
In1: 0x00000011 In2: 0x00000022 Out: 0000000000
Call Complete.
In1: 0x00000011 In2: 0x00000011 Out: 0x00000022
```