cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

ramfb.c (255B)


      1#include "qemu/osdep.h"
      2#include "qapi/error.h"
      3#include "hw/display/ramfb.h"
      4
      5void ramfb_display_update(QemuConsole *con, RAMFBState *s)
      6{
      7}
      8
      9RAMFBState *ramfb_setup(Error **errp)
     10{
     11    error_setg(errp, "ramfb support not available");
     12    return NULL;
     13}