Skip to content

Commit 590cef2

Browse files
authored
Merge branch 'develop' into feature/better_mstatus
2 parents cedc491 + 31cedb7 commit 590cef2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sysc/core2sc_adapter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ template <typename PLAT> class core2sc_adapter : public PLAT, public sc2core_if
288288

289289
void _local_irq(short id, bool value) {
290290
reg_t mask = 0;
291-
assert(id < 32 && "CLINT cannot handle more tahn 32 irq");
291+
assert(id < 32 && "CLINT cannot handle more than 32 irq");
292292
mask = 1 << id;
293293
if(value) {
294294
this->csr[iss::arch::mip] |= mask;

0 commit comments

Comments
 (0)