Skip to content

Commit

Permalink
fix typo for RISC-V 32-bit
Browse files Browse the repository at this point in the history
Signed-off-by: Axel Heider <[email protected]>
  • Loading branch information
axel-h authored and lsf37 committed Jan 9, 2024
1 parent 702d24c commit 88aebb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seL4-platforms/platforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def getISA(self, mode: int) -> str:
return {32: "IA32", 64: "x86_64"}[mode]

if self.arch == "riscv":
return {32: "RC32IMAC", 64: "RV64IMAC"}[mode]
return {32: "RV32IMAC", 64: "RV64IMAC"}[mode]

return self.march.capitalize()

Expand Down

0 comments on commit 88aebb3

Please sign in to comment.