We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5baf7ee commit e86f510Copy full SHA for e86f510
aclint.c
@@ -90,7 +90,7 @@ void aclint_mtimer_read(hart_t *hart,
90
if (!aclint_mtimer_reg_read(mtimer, addr, value))
91
vm_set_exception(hart, RV_EXC_LOAD_FAULT, hart->exc_val);
92
93
- *value >>= (RV_MEM_SW - width);
+ *value >>= RV_MEM_SW - width;
94
}
95
96
void aclint_mtimer_write(hart_t *hart,
@@ -204,7 +204,7 @@ void aclint_sswi_read(hart_t *hart,
204
if (!aclint_sswi_reg_read(sswi, addr, value))
205
206
207
208
209
210
void aclint_sswi_write(hart_t *hart,
0 commit comments