morphx666 / x8086NetEmu

A VB.NET implementation of an almost working 8086 emulator.

Home Page:https://whenimbored.xfx.net/2012/10/x8086netemu-an-8086-emulator-in-vb-net/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

x8086NetEmu

A VB.NET implementation of an almost working 8086 emulator.

Build Status

x8086NetEmu Showcase

Although it still has some bugs, it is a fairly stable and capable 8088/86/186 emulator:

  • Full 8086 architecture emulation: CPU, Memory, Flags, Registers and Stack
  • Peripherals: PIC/8259, PIT/8254, DMA/8237 and PPI/8255
  • Mostly working Adapters: CGA, Speaker and Keyboard
  • Partially working Adapters: VGA, Adlib and Mouse
  • Integrated Debugger and Console
  • No BIOS hacks required
  • WinForms and Console samples included
  • Cross-platform support through Mono (the emulator has been tested under Windows, MacOS, Linux and RaspberryPi)
  • Support for both Floppy and Hard Disk images
  • Hard disk and floppy images inspector / Disk Explorer (FAT12, FAT16 and FAT16B/BIGDOS support only)
  • Support to drag & drop files to/from the Disk Explorer and the host
  • Support to copy/paste text to/from the emulator and the host

Integrated Debugger

Development is currently stalled due to a breaking bug (or bugs?) which prevent the emulator from working correctly. The bug can be reproduced by booting into DOS 6.x and running EDIT, QBASIC, DEFRAG or MEMMAKER. Quite probably, this is the same bug that also prevents it from running Windows 1.01 (although Windows 2.03 almost works).

Portions of the code in the emulator were adapted or inspired from 'fake86' (CGA emulation), 'PCE - PC Emulator' (Group 2, DIV, IDIV, MUL and IMUL opcodes emulation and flags management) and 'retro' (Scheduler, chipset and keyboard handling).

Precompiled binaries can now be downloaded from the releases section.

Compiling for non-Windows platforms

The speaker emulation uses NAudio, which only works under Windows. So in order to compile a version of x8086 that works under non-Windows platforms, the Win32 custom build constant in the project properties of all the projects in the solution must be set to False.

If the aforementioned bug or bugs can be resolved, I will switch the sound backend support to the cross-platform library BASS.

Experimental Web UI

Experimental Web UI

Since commit 248 the emulator can be viewed and controlled through a browser by initializing one of the WinForms video adapters with the enableWebUI parameter set to true.

cpu.Adapters.Add(New CGAWinForms(cpu, videoPort, , , True))

This will create a web server at http://localhost:8086 which uses a simple script to render the emulator's display and capture key events, which will be sent back to the emulator for processing. Mouse support is not currently available.

About

A VB.NET implementation of an almost working 8086 emulator.

https://whenimbored.xfx.net/2012/10/x8086netemu-an-8086-emulator-in-vb-net/

License:MIT License


Languages

Language:Visual Basic .NET 96.0%Language:Assembly 4.0%Language:PowerShell 0.0%