2017-05-30 03:38:38 +02:00
|
|
|
/*
|
|
|
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
|
|
|
* running old operating systems and software designed for IBM
|
|
|
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
|
|
|
* system designs based on the PCI bus.
|
|
|
|
|
*
|
|
|
|
|
* This file is part of the 86Box distribution.
|
|
|
|
|
*
|
|
|
|
|
* Main emulator include file.
|
|
|
|
|
*
|
2017-10-10 03:07:29 -04:00
|
|
|
* Version: @(#)86box.h 1.0.3 2017/10/09
|
|
|
|
|
*
|
|
|
|
|
* Authors: Miran Grca, <mgrca8@gmail.com>
|
|
|
|
|
* Fred N. van Kempen, <decwiz@yahoo.com>
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
|
|
|
|
* Copyright 2016-2017 Miran Grca.
|
2017-10-10 03:07:29 -04:00
|
|
|
* Copyright 2017 Fred N. van Kempen.
|
2017-05-30 03:38:38 +02:00
|
|
|
*/
|
2017-10-10 03:07:29 -04:00
|
|
|
#ifndef EMU_86BOX_H
|
|
|
|
|
# define EMU_86BOX_H
|
2017-05-30 03:38:38 +02:00
|
|
|
|
2017-05-22 00:21:22 -04:00
|
|
|
|
2017-06-04 02:11:19 -04:00
|
|
|
#if defined(ENABLE_BUSLOGIC_LOG) || \
|
|
|
|
|
defined(ENABLE_CDROM_LOG) || \
|
|
|
|
|
defined(ENABLE_D86F_LOG) || \
|
|
|
|
|
defined(ENABLE_FDC_LOG) || \
|
|
|
|
|
defined(ENABLE_IDE_LOG) || \
|
|
|
|
|
defined(ENABLE_NIC_LOG)
|
|
|
|
|
# define ENABLE_LOG_TOGGLES 1
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-06-04 22:18:41 -04:00
|
|
|
#if defined(ENABLE_LOG_BREAKPOINT) || defined(ENABLE_VRAM_DUMP)
|
|
|
|
|
# define ENABLE_LOG_COMMANDS 1
|
|
|
|
|
#endif
|
2017-06-04 02:11:19 -04:00
|
|
|
|
|
|
|
|
#define EMU_VERSION "2.00"
|
|
|
|
|
#define EMU_VERSION_W L"2.00"
|
|
|
|
|
|
|
|
|
|
#define EMU_NAME "86Box"
|
|
|
|
|
#define EMU_NAME_W L"86Box"
|
|
|
|
|
|
|
|
|
|
#define CONFIG_FILE_W L"86box.cfg"
|
|
|
|
|
|
2017-10-10 03:07:29 -04:00
|
|
|
#define NVR_PATH L"nvr"
|
|
|
|
|
#define SCREENSHOT_PATH L"screenshots"
|
|
|
|
|
|
2017-06-04 02:11:19 -04:00
|
|
|
|
2017-10-10 03:07:29 -04:00
|
|
|
#endif /*EMU_86BOX_H*/
|