qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

fw_cfg.h (360B)


      1 /* SPDX-License-Identifier: GPL-2.0-or-later */
      2 /*
      3  * QEMU fw_cfg helpers (LoongArch specific)
      4  *
      5  * Copyright (C) 2021 Loongson Technology Corporation Limited
      6  */
      7 
      8 #ifndef HW_LOONGARCH_FW_CFG_H
      9 #define HW_LOONGARCH_FW_CFG_H
     10 
     11 #include "hw/boards.h"
     12 #include "hw/nvram/fw_cfg.h"
     13 
     14 FWCfgState *loongarch_fw_cfg_init(ram_addr_t ram_size, MachineState *ms);
     15 #endif