am,platform,nemu: fix typo in preprocessor directive

This commit is contained in:
Youduo Liu 2024-03-29 08:34:22 +08:00 committed by GitHub
parent adff80b91c
commit acd889e89c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,7 +14,7 @@
# define nemu_trap(code) asm volatile("mv a0, %0; ebreak" : :"r"(code))
#elif defined(__ISA_LOONGARCH32R__)
# define nemu_trap(code) asm volatile("move $a0, %0; break 0" : :"r"(code))
#elif
#else
# error unsupported ISA __ISA__
#endif