From 2778db7ea354ded78a473cb6f85c046586d30c51 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Fri, 19 Jun 2020 13:52:34 -0300 Subject: [PATCH] Restore MACHINE_COREBOOT --- src/include/86box/machine.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/include/86box/machine.h b/src/include/86box/machine.h index 6c011cc10..da0fdb638 100644 --- a/src/include/86box/machine.h +++ b/src/include/86box/machine.h @@ -41,6 +41,7 @@ #define MACHINE_SOUND 0x010000 /* sys has int sound */ #define MACHINE_NONMI 0x020000 /* sys does not have NMI's */ #define MACHINE_FDC 0x040000 /* sys has int FDC */ +#define MACHINE_COREBOOT 0x080000 /* sys has coreboot BIOS */ #else #define MACHINE_PC 0x000000 /* PC architecture */ #define MACHINE_AT 0x000001 /* PC/AT architecture */ @@ -59,6 +60,7 @@ #define MACHINE_SOUND 0x010000 /* sys has int sound */ #define MACHINE_NONMI 0x020000 /* sys does not have NMI's */ #define MACHINE_FDC 0x040000 /* sys has int FDC */ +#define MACHINE_COREBOOT 0x080000 /* sys has coreboot BIOS */ #endif #define IS_ARCH(m, a) (machines[(m)].flags & (a)) ? 1 : 0;