forked from volkertb/boxv9x
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modifications for boxv9x to run on QEMU
- Loading branch information
Showing
10 changed files
with
196 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.vscode/ | ||
res/*.obj | ||
res/*.bin | ||
*.obj | ||
*.err | ||
*.lib | ||
*.drv | ||
*.map | ||
*.res | ||
*.img |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
/* Definitions for the configuration manager. */ | ||
|
||
typedef DWORD CONFIGRET; /* Standardized return value. */ | ||
|
||
typedef DWORD LOG_CONF; /* Logical configuration. */ | ||
typedef LOG_CONF FAR *PLOG_CONF; /* Far pointer to logical configuration. */ | ||
|
||
typedef DWORD RES_DES; /* Resource descriptor. */ | ||
typedef RES_DES FAR *PRES_DES; /* Far pointer to resource descriptor. */ | ||
|
||
typedef DWORD DEVNODE; /* Devnode. */ | ||
|
||
typedef DWORD ULONG; | ||
|
||
typedef void FAR *PFARVOID; | ||
|
||
typedef ULONG RESOURCEID; /* Resource type ID. */ | ||
typedef RESOURCEID FAR *PRESOURCEID; /* Far pointer to resource type ID. */ | ||
|
||
typedef struct { | ||
WORD MD_Count; | ||
WORD MD_Type; | ||
ULONG MD_Alloc_Base; | ||
ULONG MD_Alloc_End; | ||
WORD MD_Flags; | ||
WORD MD_Reserved; | ||
} MEM_DES, *PMEM_DES; | ||
|
||
#define CR_SUCCESS 0 | ||
#define ALLOC_LOG_CONF 2 | ||
#define ResType_Mem 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
This was a bug in the upstream driver where
bx
was being trashed.