16

An Emulator of the IBM PC Running DOS Written in Rust

 4 years ago
source link: https://github.com/Lichtso/DOS-Emulator
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

DOS-Emulator

bAjeieN.png!web

While this is inspired by DOSBox , it is not a direct port. Many features are implemented differently or not at all. The goal was just to implement enough to play one of my favorite games and learn some rust and emulation principles along the way.

Run the Example

Checkout and build the emulator or download a prebuilt binary from the releases tab.

git clone https://github.com/Lichtso/DOS-Emulator
cd DOS-Emulator
cargo build --release

Download and unpack the guest application and start the emulator.

curl -GOL https://cors.archive.org/cors/msdos_Robot_Junior_1991/Robot_Junior_1991.zip
mkdir -p DOS/TOM/ROBJUN
unzip -j Robot_Junior_1991.zip RobotJun/ROBJUN.EXE RobotJun/ROBJUN.MUC RobotJun/ROBJUN.SCN RobotJun/ITEMJE.CRN RobotJun/ITEMJG.CRN RobotJun/SASJ.CRN -d DOS/TOM/ROBJUN/
target/release/dos-emulator -C DOS/ DOS/TOM/ROBJUN/ROBJUN.EXE

Then setup your keyboard layout (press 'k' in the CLI and follow instructions below) and enjoy the game!

Command Line Interface

  • Ctrl-c: Quit
  • p: Pause (enter the debugger)
  • k: Enter the keyboard-mapping-tool

Debugger

Note: The terminal needs to be at least 80 characters wide to correctly display the debugger.

  • p: Profile instructions (and save them to a file)
  • a: Data overview to DS:SI (string source)
  • s: Data overview to SS:SP (stack pointer)
  • d: Data overview to ES:DI (string destination)
  • Page-Up / Page-Down: Scroll data overview
  • F5: Continue (leave the debugger)
  • F10: Step over / out (places a one-shot break point behind the current instruction)
  • F11: Single step

Keyboard-Mapping-Tool

BbQzM3a.png!web Type in the CLI to control the keybinding process and type in the video window to register a scancode at the selection. The tool will automatically advance the selection to the next entry so you can continuously type in the keys it highlights. Note: The terminal needs to be at least 147 characters wide to correctly display the tool.

  • Escape: Leave the keyboard-mapping-tool
  • Arrows: Navigate / select
  • Backspace: Unregister the selected entry

Supported Software

Currently only the Game of ROBOT episodes 0, 1, 3 and 4 are known to be playable. As host macOS is tested and Ubuntu builds. Windows does not support ANSI escape sequences which are needed by the CLI (inside the termion dependency).

Architecture

NJvuEfr.png!web

There are the following threads (without the ones spawned by dependencies):

  • GUI: Renders the video output and handles the input events of the window
  • Audio: Synthesizes the signal of the sound blaster and beeper
  • CLI: Debugger and actual emulation

Evaluation

In release mode on a 2,6 GHz Intel Core i7 the emulation does 10 to 19 (up to 23 using PGO) million instructions per second. As this is much faster than the original hardware was, the emulation is done in batches with sleeps in between, in order to have a consistent timing behavior and not burn the host CPU unnecessarily. This way about 45% of one host CPU core and 32 MiB of RAM are used. The the code base is about 5 KLoC of rust (without lookup tables and bindings). Some threads read data from others using raw pointers which is definitely not the rust way but an easy workaround.

References

These are the sources I used.

ISA / CPU

BUS

BIOS

DOS

Sound / Audio

Video / Graphics / Mouse


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK