historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/stubs/ramfb.c

14 lines
255 B
C
Raw Normal View History

2024-01-16 17:20:27 +00:00
#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;
}