blob: 15628b8c81cff0a9a7c4c6a9713398a4f8b34e01 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Truncated bits while writing value to registers of RISC-V
Description of problem:
As mentioned above
Steps to reproduce:
```
# 1. Compile the `test.S`:
riscv32-unknown-linux-gnu-gcc -g -static -nostartfiles -o test hello.S
# 2. Execute the binary:
qemu-riscv32 ./test
# 3. Check exit code
echo $?
```
|