From b039e29770fb124537d7cf02721195624464a514 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Tue, 19 May 2020 21:22:05 -0300 Subject: [PATCH] Move MACHINE_COREBOOT flag up in preparation for the onboard audio PR --- src/include/86box/machine.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/include/86box/machine.h b/src/include/86box/machine.h index 3941836c3..804616da1 100644 --- a/src/include/86box/machine.h +++ b/src/include/86box/machine.h @@ -38,8 +38,9 @@ #define MACHINE_VIDEO 0x002000 /* sys has int video */ #define MACHINE_VIDEO_FIXED 0x004000 /* sys has ONLY int video */ #define MACHINE_MOUSE 0x008000 /* sys has int mouse */ -#define MACHINE_NONMI 0x010000 /* sys does not have NMI's */ -#define MACHINE_COREBOOT 0x020000 /* sys has coreboot BIOS */ +#define MACHINE_SOUND 0x010000 /* sys has int sound */ +#define MACHINE_NONMI 0x020000 /* sys does not have NMI's */ +#define MACHINE_COREBOOT 0x040000 /* sys has coreboot BIOS */ #else #define MACHINE_PC 0x000000 /* PC architecture */ #define MACHINE_AT 0x000001 /* PC/AT architecture */ @@ -55,8 +56,9 @@ #define MACHINE_VIDEO 0x002000 /* sys has int video */ #define MACHINE_VIDEO_FIXED 0x004000 /* sys has ONLY int video */ #define MACHINE_MOUSE 0x008000 /* sys has int mouse */ -#define MACHINE_NONMI 0x010000 /* sys does not have NMI's */ -#define MACHINE_COREBOOT 0x020000 /* sys has coreboot BIOS */ +#define MACHINE_SOUND 0x010000 /* sys has int sound */ +#define MACHINE_NONMI 0x020000 /* sys does not have NMI's */ +#define MACHINE_COREBOOT 0x040000 /* sys has coreboot BIOS */ #endif #define IS_ARCH(m, a) (machines[(m)].flags & (a)) ? 1 : 0;