aboutsummaryrefslogtreecommitdiff
path: root/src/arch/riscv/include/arch/hlt.h
blob: 12099a9b9b8f1db4319d56d7c47329b377807617 (plain)
1
2
3
4
5
6
static inline __attribute__((always_inline)) void hlt(void)
{
        while(1);
}