ReactOS 0.4.15-dev-7788-g1ad9096
emulator.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: GPL - See COPYING in the top level directory
3 * PROJECT: ReactOS Virtual DOS Machine
4 * FILE: subsystems/mvdm/ntvdm/emulator.c
5 * PURPOSE: Minimal x86 machine emulator for the VDM
6 * PROGRAMMERS: Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
7 */
8
9/* INCLUDES *******************************************************************/
10
11#include "ntvdm.h"
12
13#define NDEBUG
14#include <debug.h>
15
16#include "emulator.h"
17#include "memory.h"
18
19#include "cpu/callback.h"
20#include "cpu/cpu.h"
21#include "cpu/bop.h"
22#include <isvbop.h>
23
24#include "int32.h"
25
26#include "clock.h"
27#include "bios/rom.h"
28#include "hardware/cmos.h"
29#include "hardware/disk.h"
30#include "hardware/dma.h"
31#include "hardware/keyboard.h"
32#include "hardware/mouse.h"
33#include "hardware/pic.h"
34#include "hardware/pit.h"
35#include "hardware/ppi.h"
36#include "hardware/ps2.h"
38#include "hardware/video/svga.h"
39
40#include "./console/video.h"
41
42
43#include "vddsup.h"
44#include "io.h"
45
46/* PRIVATE VARIABLES **********************************************************/
47
50
53
55{
56 L"Division By Zero",
57 L"Debug",
58 L"Unexpected Error",
59 L"Breakpoint",
60 L"Integer Overflow",
61 L"Bound Range Exceeded",
62 L"Invalid Opcode",
63 L"FPU Not Available"
64};
65
66/* BOP Identifiers */
67#define BOP_DEBUGGER 0x56 // Break into the debugger from a 16-bit app
68
69/* PRIVATE FUNCTIONS **********************************************************/
70
72{
74
75 /* Get the interrupt number from the PIC */
76 return PicGetInterrupt();
77}
78
80{
81 /* The FPU is wired to IRQ 13 */
83}
84
86{
87 WORD CodeSegment, InstructionPointer;
89
90 ASSERT(ExceptionNumber < 8);
91
92 /* Get the CS:IP */
93 InstructionPointer = Stack[STACK_IP];
94 CodeSegment = Stack[STACK_CS];
95 Opcode = (PBYTE)SEG_OFF_TO_PTR(CodeSegment, InstructionPointer);
96
97 /* Display a message to the user */
98 DisplayMessage(L"Exception: %s occurred at %04X:%04X\n"
99 L"Opcode: %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X",
100 ExceptionName[ExceptionNumber],
101 CodeSegment,
102 InstructionPointer,
103 Opcode[0],
104 Opcode[1],
105 Opcode[2],
106 Opcode[3],
107 Opcode[4],
108 Opcode[5],
109 Opcode[6],
110 Opcode[7],
111 Opcode[8],
112 Opcode[9]);
113
115
116 /* Stop the VDM */
118}
119
121{
122 /* Call the Fast486 API */
124}
125
127{
128 DPRINT1("NTVDM: BOP_DEBUGGER\n");
129 DebugBreak();
130}
131
133{
134 if (State)
135 {
136 DPRINT("PicInterruptRequest\n");
137 PicInterruptRequest(0); // Raise IRQ 0
138 }
139 // else < Lower IRQ 0 >
140}
141
143{
144#if 0
145 if (State)
146 {
147 /* Set bit 4 of Port 61h */
148 Port61hState |= 1 << 4;
149 }
150 else
151 {
152 /* Clear bit 4 of Port 61h */
153 Port61hState &= ~(1 << 4);
154 }
155#else
156 Port61hState = (Port61hState & 0xEF) | (State << 4);
157#endif
158}
159
161{
162 BYTE OldPort61hState = Port61hState;
163
164#if 0
165 if (State)
166 {
167 /* Set bit 5 of Port 61h */
168 Port61hState |= 1 << 5;
169 }
170 else
171 {
172 /* Clear bit 5 of Port 61h */
173 Port61hState &= ~(1 << 5);
174 }
175#else
176 Port61hState = (Port61hState & 0xDF) | (State << 5);
177#endif
178
179 if ((OldPort61hState ^ Port61hState) & 0x20)
180 {
181 DPRINT("PitChan2Out -- Port61hState changed\n");
183 }
184}
185
186
187static DWORD
188WINAPI
190{
192 HANDLE WaitHandles[2];
193 DWORD WaitResult;
194
195 /*
196 * For optimization purposes, Windows (and hence ReactOS, too, for
197 * compatibility reasons) uses a static buffer if no more than five
198 * input records are read. Otherwise a new buffer is used.
199 * The client-side expects that we know this behaviour.
200 * See consrv/coninput.c
201 *
202 * We exploit here this optimization by also using a buffer of 5 records.
203 */
204 INPUT_RECORD InputRecords[5];
205 ULONG NumRecords, i;
206
207 WaitHandles[0] = VdmTaskEvent;
208 WaitHandles[1] = GetConsoleInputWaitHandle();
209
210 while (VdmRunning)
211 {
212 /* Make sure the task event is signaled */
213 WaitResult = WaitForMultipleObjects(ARRAYSIZE(WaitHandles),
214 WaitHandles,
215 TRUE,
216 INFINITE);
217 switch (WaitResult)
218 {
219 case WAIT_OBJECT_0 + 0:
220 case WAIT_OBJECT_0 + 1:
221 break;
222 default:
223 return GetLastError();
224 }
225
226 /* Wait for an input record */
228 InputRecords,
229 ARRAYSIZE(InputRecords),
230 &NumRecords,
232 {
233 DWORD LastError = GetLastError();
234 DPRINT1("Error reading console input (0x%p, %lu) - Error %lu\n", ConsoleInput, NumRecords, LastError);
235 return LastError;
236 }
237
238 // ASSERT(NumRecords != 0);
239 if (NumRecords == 0)
240 {
241 DPRINT1("Got NumRecords == 0!\n");
242 continue;
243 }
244
245 /* Dispatch the events */
246 for (i = 0; i < NumRecords; i++)
247 {
248 /* Check the event type */
249 switch (InputRecords[i].EventType)
250 {
251 /*
252 * Hardware events
253 */
254 case KEY_EVENT:
255 KeyboardEventHandler(&InputRecords[i].Event.KeyEvent);
256 break;
257
258 case MOUSE_EVENT:
259 MouseEventHandler(&InputRecords[i].Event.MouseEvent);
260 break;
261
263 ScreenEventHandler(&InputRecords[i].Event.WindowBufferSizeEvent);
264 break;
265
266 /*
267 * Interface events
268 */
269 case MENU_EVENT:
270 MenuEventHandler(&InputRecords[i].Event.MenuEvent);
271 break;
272
273 case FOCUS_EVENT:
274 FocusEventHandler(&InputRecords[i].Event.FocusEvent);
275 break;
276
277 default:
278 DPRINT1("Unknown input event type 0x%04x\n", InputRecords[i].EventType);
279 break;
280 }
281 }
282
283 /* Let the console subsystem queue some new events */
284 Sleep(10);
285 }
286
287 return 0;
288}
289
291{
293}
294
296{
298}
299
300
301/* PUBLIC FUNCTIONS ***********************************************************/
302
303static VOID
305{
307 DWORD Size;
308
309 /* Dump the VM memory */
314}
315
316static VOID
318{
319#define LINE_SIZE 75 + 2
320 ULONG i;
321 PBYTE Ptr1, Ptr2;
322 CHAR LineBuffer[LINE_SIZE];
323 PCHAR Line;
324 DWORD LineSize;
325
326 /* Dump the VM memory */
328 Ptr1 = Ptr2 = REAL_TO_PHYS(NULL);
329 while (MAX_ADDRESS - (ULONG_PTR)PHYS_TO_REAL(Ptr1) > 0)
330 {
331 Ptr1 = Ptr2;
332 Line = LineBuffer;
333
334 /* Print the address */
335 Line += snprintf(Line, LINE_SIZE + LineBuffer - Line, "%08Ix ", (ULONG_PTR)PHYS_TO_REAL(Ptr1));
336
337 /* Print up to 16 bytes... */
338
339 /* ... in hexadecimal form first... */
340 i = 0;
341 while (i++ <= 0x0F && (MAX_ADDRESS - (ULONG_PTR)PHYS_TO_REAL(Ptr1) > 0))
342 {
343 Line += snprintf(Line, LINE_SIZE + LineBuffer - Line, " %02x", *Ptr1);
344 ++Ptr1;
345 }
346
347 /* ... align with spaces if needed... */
348 RtlFillMemory(Line, (0x0F + 2 - i) * 3 + 2, ' ');
349 Line += (0x0F + 2 - i) * 3 + 2;
350
351 /* ... then in character form. */
352 i = 0;
353 while (i++ <= 0x0F && (MAX_ADDRESS - (ULONG_PTR)PHYS_TO_REAL(Ptr2) > 0))
354 {
355 *Line++ = ((*Ptr2 >= 0x20 && *Ptr2 <= 0x7E) || (*Ptr2 >= 0x80 && *Ptr2 < 0xFF) ? *Ptr2 : '.');
356 ++Ptr2;
357 }
358
359 /* Newline */
360 *Line++ = '\r';
361 *Line++ = '\n';
362
363 /* Finally write the line to the file */
364 LineSize = Line - LineBuffer;
365 WriteFile(hFile, LineBuffer, LineSize, &LineSize, NULL);
366 }
367}
368
370{
371 static ULONG DumpNumber = 0;
372
375
376 /* Build a suitable file name */
378 L"memdump%lu.%s",
379 DumpNumber,
380 TextFormat ? L"txt" : L"dat");
381 ++DumpNumber;
382
383 DPRINT1("Creating memory dump file '%S'...\n", FileName);
384
385 /* Always create the dump file */
388 0,
389 NULL,
392 NULL);
393
395 {
396 DPRINT1("Error when creating '%S' for memory dumping, GetLastError() = %u\n",
398 return;
399 }
400
401 /* Dump the VM memory in the chosen format */
402 if (TextFormat)
404 else
406
407 /* Close the file */
409
410 DPRINT1("Memory dump done\n");
411}
412
414{
415// FIXME: This should be present in PSDK commdlg.h
416//
417// FlagsEx Values
418#if (_WIN32_WINNT >= 0x0500)
419#define OFN_EX_NOPLACESBAR 0x00000001
420#endif // (_WIN32_WINNT >= 0x0500)
421
424 WCHAR szFile[MAX_PATH] = L"";
425
427
428 RtlZeroMemory(&ofn, sizeof(ofn));
429 ofn.lStructSize = sizeof(ofn);
431 ofn.lpstrTitle = L"Select a virtual floppy image";
433// ofn.FlagsEx = OFN_EX_NOPLACESBAR;
434 ofn.lpstrFilter = L"Virtual floppy images (*.vfd;*.img;*.ima;*.dsk)\0*.vfd;*.img;*.ima;*.dsk\0All files (*.*)\0*.*\0\0";
435 ofn.lpstrDefExt = L"vfd";
436 ofn.nFilterIndex = 0;
437 ofn.lpstrFile = szFile;
438 ofn.nMaxFile = ARRAYSIZE(szFile);
439
440 if (!GetOpenFileNameW(&ofn))
441 {
442 DPRINT1("CommDlgExtendedError = %d\n", CommDlgExtendedError());
443 return;
444 }
445
446 /* Free the old string */
447 if (GlobalSettings.FloppyDisks[DiskNumber].Buffer)
449
450 /* Reinitialize the string */
453
454 /* Mount the disk */
455 if (!MountDisk(FLOPPY_DISK, DiskNumber, GlobalSettings.FloppyDisks[DiskNumber].Buffer, !!(ofn.Flags & OFN_READONLY)))
456 {
457 DisplayMessage(L"An error happened when mounting disk %d", DiskNumber);
459 RtlInitEmptyUnicodeString(&GlobalSettings.FloppyDisks[DiskNumber], NULL, 0);
460 return;
461 }
462
463 /* Refresh the menu state */
465}
466
468{
470
471 /* Unmount the disk */
472 if (!UnmountDisk(FLOPPY_DISK, DiskNumber))
473 DisplayMessage(L"An error happened when ejecting disk %d", DiskNumber);
474
475 /* Free the old string */
476 if (GlobalSettings.FloppyDisks[DiskNumber].Buffer)
477 {
479 RtlInitEmptyUnicodeString(&GlobalSettings.FloppyDisks[DiskNumber], NULL, 0);
480 }
481
482 /* Refresh the menu state */
484}
485
486
488{
489 /* Pause the VDM */
493}
494
496{
497 /* Resume the VDM */
501}
502
504{
505 /* Stop the VDM */
506 CpuUnsimulate(); // Halt the CPU
508}
509
511{
512 USHORT i;
513
514 /* Initialize memory */
515 if (!MemInitialize())
516 {
517 wprintf(L"Memory initialization failed.\n");
518 return FALSE;
519 }
520
521 /* Initialize I/O ports */
522 /* Initialize RAM */
523
524 /* Initialize the CPU */
525
526 /* Initialize the internal clock */
527 if (!ClockInitialize())
528 {
529 wprintf(L"FATAL: Failed to initialize the clock\n");
531 return FALSE;
532 }
533
534 /* Initialize the CPU */
536
537 /* Initialize DMA */
539
540 /* Initialize PIC, PIT, CMOS, PC Speaker and PS/2 */
542
547
551
553
554 /* Initialize the keyboard and mouse and connect them to their PS/2 ports */
555 KeyboardInit(0);
556 MouseInit(1);
557
558 /**************** ATTACH INPUT WITH CONSOLE *****************/
559 /* Create the task event */
562
563 /* Start the input thread */
565 if (InputThread == NULL)
566 {
567 wprintf(L"FATAL: Failed to create the console input thread.\n");
569 return FALSE;
570 }
572 /************************************************************/
573
574 /* Initialize the VGA */
576 {
577 wprintf(L"FATAL: Failed to initialize VGA support.\n");
579 return FALSE;
580 }
581
582 /* Initialize the disk controller */
583 if (!DiskCtrlInitialize())
584 {
585 wprintf(L"FATAL: Failed to completely initialize the disk controller.\n");
587 return FALSE;
588 }
589
590 /* Mount the available floppy disks */
591 for (i = 0; i < ARRAYSIZE(GlobalSettings.FloppyDisks); ++i)
592 {
596 {
598 {
599 DPRINT1("Failed to mount floppy disk file '%wZ'.\n", &GlobalSettings.FloppyDisks[i]);
601 RtlInitEmptyUnicodeString(&GlobalSettings.FloppyDisks[i], NULL, 0);
602 }
603 }
604 }
605
606 /*
607 * Mount the available hard disks. Contrary to floppies, failing
608 * mounting a hard disk is considered as an unrecoverable error.
609 */
610 for (i = 0; i < ARRAYSIZE(GlobalSettings.HardDisks); ++i)
611 {
612 if (GlobalSettings.HardDisks[i].Length != 0 &&
615 {
617 {
618 wprintf(L"FATAL: Failed to mount hard disk file '%wZ'.\n", &GlobalSettings.HardDisks[i]);
620 return FALSE;
621 }
622 }
623 }
624
625 /* Refresh the menu state */
627
628 /* Initialize the software callback system and register the emulator BOPs */
631 // RegisterBop(BOP_UNSIMULATE, CpuUnsimulateBop);
632
633 /* Initialize VDD support */
635
636 return TRUE;
637}
638
640{
642
643 VgaCleanup();
644
645 /* Close the input thread handle */
648
649 /* Close the task event */
652
653 PS2Cleanup();
654
656 CmosCleanup();
657 // PitCleanup();
658 // PicCleanup();
659
660 // DmaCleanup();
661
662 CpuCleanup();
663 MemCleanup();
664}
665
666
667
668VOID
669WINAPI
671{
672 CpuSimulate();
673}
674
675VOID
676WINAPI
678{
679 /* Stop the VDM */
681}
682
683/* EOF */
unsigned char BOOLEAN
#define MAX_ADDRESS
#define DPRINT1
Definition: precomp.h:8
VOID RegisterBop(BYTE BopCode, EMULATOR_BOP_PROC BopHandler)
Definition: bop.c:29
DWORD WINAPI CommDlgExtendedError(void)
Definition: cdlg32.c:148
Definition: bufpool.h:45
#define OFN_EXPLORER
Definition: commdlg.h:104
#define OFN_LONGNAMES
Definition: commdlg.h:108
#define OFN_ENABLESIZING
Definition: commdlg.h:101
#define OFN_READONLY
Definition: commdlg.h:118
#define OFN_FILEMUSTEXIST
Definition: commdlg.h:106
#define OFN_PATHMUSTEXIST
Definition: commdlg.h:117
NTSYSAPI BOOLEAN NTAPI RtlCreateUnicodeString(PUNICODE_STRING DestinationString, PCWSTR SourceString)
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define ARRAYSIZE(array)
Definition: filtermapper.c:47
BOOL WINAPI GetOpenFileNameW(OPENFILENAMEW *ofn)
Definition: filedlg.c:4736
#define CloseHandle
Definition: compat.h:739
#define FILE_BEGIN
Definition: compat.h:761
#define SetFilePointer
Definition: compat.h:743
#define INVALID_HANDLE_VALUE
Definition: compat.h:731
#define MAX_PATH
Definition: compat.h:34
#define CreateFileW
Definition: compat.h:741
#define FILE_ATTRIBUTE_NORMAL
Definition: compat.h:137
HANDLE WINAPI GetConsoleInputWaitHandle(VOID)
Definition: console.c:683
BOOL WINAPI DECLSPEC_HOTPATCH ReadConsoleInputExW(IN HANDLE hConsoleInput, OUT PINPUT_RECORD lpBuffer, IN DWORD nLength, OUT LPDWORD lpNumberOfEventsRead, IN WORD wFlags)
Definition: readwrite.c:1296
BOOL WINAPI WriteFile(IN HANDLE hFile, IN LPCVOID lpBuffer, IN DWORD nNumberOfBytesToWrite OPTIONAL, OUT LPDWORD lpNumberOfBytesWritten, IN LPOVERLAPPED lpOverlapped OPTIONAL)
Definition: rw.c:24
HANDLE WINAPI DECLSPEC_HOTPATCH CreateThread(IN LPSECURITY_ATTRIBUTES lpThreadAttributes, IN DWORD dwStackSize, IN LPTHREAD_START_ROUTINE lpStartAddress, IN LPVOID lpParameter, IN DWORD dwCreationFlags, OUT LPDWORD lpThreadId)
Definition: thread.c:137
#define INFINITE
Definition: serial.h:102
#define ULONG_PTR
Definition: config.h:101
static VOID WINAPI PitChan0Out(LPVOID Param, BOOLEAN State)
Definition: emulator.c:132
static VOID WINAPI PitChan2Out(LPVOID Param, BOOLEAN State)
Definition: emulator.c:160
static DWORD WINAPI ConsoleEventThread(LPVOID Parameter)
Definition: emulator.c:189
static VOID DumpMemoryTxt(HANDLE hFile)
Definition: emulator.c:317
static VOID WINAPI EmulatorDebugBreakBop(LPWORD Stack)
Definition: emulator.c:126
VOID DumpMemory(BOOLEAN TextFormat)
Definition: emulator.c:369
VOID WINAPI VDDTerminateVDM(VOID)
Definition: emulator.c:677
static VOID DumpMemoryRaw(HANDLE hFile)
Definition: emulator.c:304
VOID EmulatorInterruptSignal(VOID)
Definition: emulator.c:120
VOID EmulatorTerminate(VOID)
Definition: emulator.c:503
VOID WINAPI VDDSimulate16(VOID)
Definition: emulator.c:670
LPCWSTR ExceptionName[]
Definition: emulator.c:54
static VOID WINAPI PitChan1Out(LPVOID Param, BOOLEAN State)
Definition: emulator.c:142
BOOLEAN EmulatorInitialize(HANDLE ConsoleInput, HANDLE ConsoleOutput)
Definition: emulator.c:510
VOID EmulatorException(BYTE ExceptionNumber, LPWORD Stack)
Definition: emulator.c:85
HANDLE VdmTaskEvent
Definition: emulator.c:51
static HANDLE InputThread
Definition: emulator.c:52
#define BOP_DEBUGGER
Definition: emulator.c:67
VOID EmulatorResume(VOID)
Definition: emulator.c:495
#define LINE_SIZE
VOID EjectFloppy(IN ULONG DiskNumber)
Definition: emulator.c:467
static VOID PauseEventThread(VOID)
Definition: emulator.c:290
LPVOID BaseAddress
Definition: emulator.c:48
VOID EmulatorCleanup(VOID)
Definition: emulator.c:639
VOID MountFloppy(IN ULONG DiskNumber)
Definition: emulator.c:413
BOOLEAN VdmRunning
Definition: emulator.c:49
UCHAR FASTCALL EmulatorIntAcknowledge(PFAST486_STATE State)
Definition: emulator.c:71
VOID FASTCALL EmulatorFpu(PFAST486_STATE State)
Definition: emulator.c:79
static VOID ResumeEventThread(VOID)
Definition: emulator.c:295
VOID EmulatorPause(VOID)
Definition: emulator.c:487
#define PHYS_TO_REAL(ptr)
Definition: emulator.h:38
#define REAL_TO_PHYS(ptr)
Definition: emulator.h:37
#define SEG_OFF_TO_PTR(seg, off)
Definition: emulator.h:32
@ Success
Definition: eventcreate.c:712
VOID NTAPI Fast486InterruptSignal(PFAST486_STATE State)
Definition: fast486.c:205
unsigned long DWORD
Definition: ntddk_ex.h:95
unsigned short WORD
Definition: ntddk_ex.h:93
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
_In_ PVOID _In_ ULONG Opcode
Definition: hubbusif.h:331
#define RtlFillMemory(Dest, Length, Fill)
Definition: winternl.h:599
VOID InitializeInt32(VOID)
Definition: int32.c:194
#define STACK_IP
Definition: int32.h:33
#define STACK_CS
Definition: int32.h:34
#define ASSERT(a)
Definition: mode.c:44
#define CREATE_ALWAYS
Definition: disk.h:72
int _snwprintf(wchar_t *buffer, size_t count, const wchar_t *format,...)
_In_ HANDLE hFile
Definition: mswsock.h:90
_In_ ACCESS_MASK _In_opt_ POBJECT_ATTRIBUTES _In_ EVENT_TYPE EventType
Definition: exfuncs.h:167
#define FASTCALL
Definition: nt_native.h:50
NTSYSAPI VOID NTAPI RtlFreeUnicodeString(PUNICODE_STRING UnicodeString)
#define GENERIC_WRITE
Definition: nt_native.h:90
#define UNREFERENCED_PARAMETER(P)
Definition: ntbasedef.h:317
NTVDM_SETTINGS GlobalSettings
Definition: ntvdm.c:28
#define L(x)
Definition: ntvdm.h:50
BYTE * PBYTE
Definition: pedump.c:66
unsigned short USHORT
Definition: pedump.c:61
VOID PitSetOutFunction(BYTE Channel, LPVOID Param, PIT_OUT_FUNCTION OutFunction)
Definition: pit.c:476
VOID PitInitialize(VOID)
Definition: pit.c:503
VOID PpiInitialize(VOID)
Definition: ppi.c:78
BYTE Port61hState
Definition: ppi.c:31
BOOLEAN PS2Initialize(VOID)
Definition: ps2.c:520
VOID PS2Cleanup(VOID)
Definition: ps2.c:546
void DisplayMessage(BOOL bConsole, BOOL bSilent, LPCTSTR lpMessage, LPCTSTR lpTitle, UINT uType)
Definition: regsvr32.c:239
VOID NTAPI Fast486DumpState(PFAST486_STATE State)
Definition: debug.c:127
OPENFILENAME ofn
Definition: sndrec32.cpp:56
#define DPRINT
Definition: sndvol32.h:71
Definition: ncftp.h:79
UNICODE_STRING HardDisks[4]
Definition: ntvdm.h:89
UNICODE_STRING FloppyDisks[2]
Definition: ntvdm.h:88
LPCSTR lpstrDefExt
Definition: commdlg.h:345
DWORD nFilterIndex
Definition: commdlg.h:335
HWND hwndOwner
Definition: commdlg.h:330
LPCSTR lpstrTitle
Definition: commdlg.h:341
LPSTR lpstrFile
Definition: commdlg.h:336
DWORD Flags
Definition: commdlg.h:342
DWORD lStructSize
Definition: commdlg.h:329
LPCSTR lpstrFilter
Definition: commdlg.h:332
DWORD nMaxFile
Definition: commdlg.h:337
BOOLEAN ClockInitialize(VOID)
Definition: clock.c:219
VOID UpdateVdmMenuDisks(VOID)
Definition: console.c:146
HWND hConsoleWnd
Definition: console.c:20
VOID MenuEventHandler(PMENU_EVENT_RECORD MenuEvent)
Definition: console.c:527
VOID FocusEventHandler(PFOCUS_EVENT_RECORD FocusEvent)
Definition: console.c:600
static HANDLE ConsoleOutput
Definition: console.c:17
VOID ScreenEventHandler(PWINDOW_BUFFER_SIZE_RECORD ScreenEvent)
Definition: video.c:448
BOOLEAN CpuInitialize(VOID)
Definition: cpu.c:216
VOID CpuSimulate(VOID)
Definition: cpu.c:167
VOID CpuCleanup(VOID)
Definition: cpu.c:243
FAST486_STATE EmulatorContext
Definition: cpu.c:39
VOID CpuUnsimulate(VOID)
Definition: cpu.c:203
VOID CmosCleanup(VOID)
Definition: cmos.c:568
VOID CmosInitialize(VOID)
Definition: cmos.c:460
BOOLEAN DiskCtrlInitialize(VOID)
Definition: disk.c:619
BOOLEAN UnmountDisk(IN DISK_TYPE DiskType, IN ULONG DiskNumber)
Definition: disk.c:589
VOID DiskCtrlCleanup(VOID)
Definition: disk.c:624
BOOLEAN MountDisk(IN DISK_TYPE DiskType, IN ULONG DiskNumber, IN PCWSTR FileName, IN BOOLEAN ReadOnly)
Definition: disk.c:500
@ HARD_DISK
Definition: disk.h:45
@ FLOPPY_DISK
Definition: disk.h:44
VOID DmaInitialize(VOID)
Definition: dma.c:549
VOID KeyboardEventHandler(PKEY_EVENT_RECORD KeyEvent)
Definition: keyboard.c:167
BOOLEAN KeyboardInit(BYTE PS2Connector)
Definition: keyboard.c:188
VOID MouseEventHandler(PMOUSE_EVENT_RECORD MouseEvent)
Definition: mouse.c:427
BOOLEAN MouseInit(BYTE PS2Connector)
Definition: mouse.c:464
VOID PicInitialize(VOID)
Definition: pic.c:295
BYTE PicGetInterrupt(VOID)
Definition: pic.c:244
VOID PicInterruptRequest(BYTE Number)
Definition: pic.c:192
VOID SpeakerChange(UCHAR Port61hValue)
Definition: speaker.c:196
VOID SpeakerCleanup(VOID)
Definition: speaker.c:295
VOID SpeakerInitialize(VOID)
Definition: speaker.c:260
VOID MemCleanup(VOID)
Definition: memory.c:783
BOOLEAN MemInitialize(VOID)
Definition: memory.c:723
VOID VgaRefreshDisplay(VOID)
Definition: svga.c:1783
BOOLEAN VgaInitialize(HANDLE TextHandle)
Definition: svga.c:2100
VOID VgaCleanup(VOID)
Definition: svga.c:2145
DWORD WINAPI WaitForMultipleObjects(IN DWORD nCount, IN CONST HANDLE *lpHandles, IN BOOL bWaitAll, IN DWORD dwMilliseconds)
Definition: synch.c:151
VOID WINAPI DECLSPEC_HOTPATCH Sleep(IN DWORD dwMilliseconds)
Definition: synch.c:790
HANDLE WINAPI DECLSPEC_HOTPATCH CreateEventW(IN LPSECURITY_ATTRIBUTES lpEventAttributes OPTIONAL, IN BOOL bManualReset, IN BOOL bInitialState, IN LPCWSTR lpName OPTIONAL)
Definition: synch.c:651
BOOL WINAPI DECLSPEC_HOTPATCH SetEvent(IN HANDLE hEvent)
Definition: synch.c:733
BOOL WINAPI DECLSPEC_HOTPATCH ResetEvent(IN HANDLE hEvent)
Definition: synch.c:714
uint16_t * LPWORD
Definition: typedefs.h:56
PVOID HANDLE
Definition: typedefs.h:73
#define RtlZeroMemory(Destination, Length)
Definition: typedefs.h:262
uint32_t ULONG_PTR
Definition: typedefs.h:65
#define IN
Definition: typedefs.h:39
uint32_t ULONG
Definition: typedefs.h:59
char * PCHAR
Definition: typedefs.h:51
VOID VDDBlockUserHook(VOID)
Definition: vddsup.c:479
VOID VDDSupInitialize(VOID)
Definition: vddsup.c:506
VOID VDDResumeUserHook(VOID)
Definition: vddsup.c:492
_Must_inspect_result_ _In_ WDFDEVICE _In_ PWDF_DEVICE_PROPERTY_DATA _In_ DEVPROPTYPE _In_ ULONG Size
Definition: wdfdevice.h:4533
_In_ WDFREQUEST _In_ PIO_STACK_LOCATION Stack
Definition: wdfrequest.h:639
#define wprintf(...)
Definition: whoami.c:18
DWORD WINAPI GetLastError(void)
Definition: except.c:1042
void WINAPI DebugBreak(void)
#define WAIT_OBJECT_0
Definition: winbase.h:406
#define WINDOW_BUFFER_SIZE_EVENT
Definition: wincon.h:130
#define MOUSE_EVENT
Definition: wincon.h:129
#define KEY_EVENT
Definition: wincon.h:128
#define MENU_EVENT
Definition: wincon.h:131
#define CONSOLE_READ_NOWAIT
Definition: wincon.h:123
#define FOCUS_EVENT
Definition: wincon.h:132
#define WINAPI
Definition: msvc.h:6
#define snprintf
Definition: wintirpc.h:48
_Inout_opt_ PVOID Parameter
Definition: rtltypes.h:323
unsigned char UCHAR
Definition: xmlstorage.h:181
__wchar_t WCHAR
Definition: xmlstorage.h:180
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185
char CHAR
Definition: xmlstorage.h:175
unsigned char BYTE
Definition: xxhash.c:193