]> Git Repo - qemu.git/blobdiff - hw/pc.h
Fix manpage errors
[qemu.git] / hw / pc.h
diff --git a/hw/pc.h b/hw/pc.h
index 03ffc915361114fefa99abcf0b3cc54e56704b09..d54959aa59d774ffbb503b16a45ed29570f652af 100644 (file)
--- a/hw/pc.h
+++ b/hw/pc.h
@@ -2,6 +2,7 @@
 #define HW_PC_H
 
 #include "qemu-common.h"
+#include "ioport.h"
 
 /* PC-style peripherals (also used by other machines).  */
 
@@ -150,4 +151,14 @@ void isa_cirrus_vga_init(void);
 void isa_ne2000_init(int base, int irq, NICInfo *nd);
 
 int cpu_is_bsp(CPUState *env);
+
+/* e820 types */
+#define E820_RAM        1
+#define E820_RESERVED   2
+#define E820_ACPI       3
+#define E820_NVS        4
+#define E820_UNUSABLE   5
+
+int e820_add_entry(uint64_t, uint64_t, uint32_t);
+
 #endif
This page took 0.021744 seconds and 4 git commands to generate.