- move BX_BOOT_* constants from bochs.h into gui/siminterface.h

This commit is contained in:
Bryce Denney 2002-08-31 04:57:21 +00:00
parent 327cd86e9b
commit 329bc47b77
2 changed files with 8 additions and 6 deletions

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: bochs.h,v 1.82 2002-08-30 14:22:47 vruppert Exp $
// $Id: bochs.h,v 1.83 2002-08-31 04:57:18 bdenney Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002 MandrakeSoft S.A.
@ -610,10 +610,6 @@ typedef struct {
bx_param_string_c *Okeymap;
} bx_keyboard_options;
#define BX_BOOT_FLOPPYA 0
#define BX_BOOT_DISKC 1
#define BX_BOOT_CDROM 2
#define BX_KBD_XT_TYPE 0
#define BX_KBD_AT_TYPE 1
#define BX_KBD_MF_TYPE 2

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: siminterface.h,v 1.53 2002-08-30 16:23:36 bdenney Exp $
// $Id: siminterface.h,v 1.54 2002-08-31 04:57:21 bdenney Exp $
/////////////////////////////////////////////////////////////////////////
//
// Before I can describe what this file is for, I have to make the
@ -257,6 +257,12 @@ typedef enum {
#define BX_EJECTED 10
#define BX_INSERTED 11
// boot devices
#define BX_BOOT_FLOPPYA 0
#define BX_BOOT_DISKC 1
#define BX_BOOT_CDROM 2
///////////////////////////////////////////////////////////////////
// event structures for communication between simulator and CI
///////////////////////////////////////////////////////////////////