Indirection for INSTR_EmulateInstruction for use by DOS code.
Added support for a 55Hz system timer, letting DOS apps calibrate
their delay loops and such. Calls INSTR_EmulateInstruction for
instruction emulation (principally I/O port access). Added macro
V86_FLAG.
diff --git a/include/dosexe.h b/include/dosexe.h
index 202a7b2..8782116 100644
--- a/include/dosexe.h
+++ b/include/dosexe.h
@@ -10,6 +10,7 @@
#include <sys/types.h>
#include "windows.h"
#include "winnt.h"
+#include "sig_context.h"
#include "wintypes.h"
typedef struct _DOSTASK {
@@ -20,6 +21,7 @@
WORD xms_seg;
WORD dpmi_seg,dpmi_sel,dpmi_flag;
DWORD wrap_ofs,call_ofs;
+ WORD system_timer;
HMODULE16 hModule;
char mm_name[128];
int mm_fd;
@@ -40,7 +42,12 @@
#endif /* linux */
-extern void (*ctx_debug_call)( int sig, CONTEXT* );
+#define V86_FLAG 0x00020000
+
+extern void (*ctx_debug_call)( int, CONTEXT* );
+extern BOOL32 (*instr_emu_call)( SIGCONTEXT* );
+
+extern void MZ_Tick( WORD handle );
extern HINSTANCE16 MZ_CreateProcess( LPCSTR name, LPCSTR cmdline, LPCSTR env,
LPSTARTUPINFO32A startup, LPPROCESS_INFORMATION info );