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

14 lines
255 B
C

#include "qemu/osdep.h"
#include "qapi/error.h"
#include "hw/display/ramfb.h"
void ramfb_display_update(QemuConsole *con, RAMFBState *s)
{
}
RAMFBState *ramfb_setup(Error **errp)
{
error_setg(errp, "ramfb support not available");
return NULL;
}