X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=drivers%2Fbios_emulator%2Fbiosemu.c;h=ccfc872f788bf84fbd2fa3d043befd8e5bf1b675;hb=81735b2568cf634d601c0d4a1bbc3a3882bc8eda;hp=06d4ad380f3e4ed6676e53a33e64352331052cd9;hpb=9c7e4b06214db61bb21f1bcbe57c97519669baae;p=oweals%2Fu-boot.git diff --git a/drivers/bios_emulator/biosemu.c b/drivers/bios_emulator/biosemu.c index 06d4ad380f..ccfc872f78 100644 --- a/drivers/bios_emulator/biosemu.c +++ b/drivers/bios_emulator/biosemu.c @@ -45,8 +45,12 @@ * ****************************************************************************/ -#include "biosemui.h" #include +#include + +#if defined(CONFIG_BIOSEMU) + +#include "biosemui.h" BE_sysEnv _BE_env = {{0}}; static X86EMU_memFuncs _BE_mem __attribute__((section(".got2"))) = { @@ -368,3 +372,4 @@ int X86API BE_int86x(int intno, RMREGS * in, RMREGS * out, RMSREGS * sregs) sregs->gs = M.x86.R_GS; return out->x.ax; } +#endif