blob: 9937f4be0228f608d5111243520d57f43b7a73cf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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 $?
```
|