Projet_SETI_RISC-V/riscv-gnu-toolchain/qemu/stubs/runstate-check.c
2023-03-06 14:48:14 +01:00

8 lines
135 B
C

#include "qemu/osdep.h"
#include "sysemu/runstate.h"
bool runstate_check(RunState state)
{
return state == RUN_STATE_PRELAUNCH;
}