Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 410 Bytes

readme.md

File metadata and controls

27 lines (22 loc) · 410 Bytes

Small 8086 emulator

It cannot run the following instructions due to skill issues

  • IN
  • OUT
  • LOCK
  • WAIT

Build

cargo build

We can execute the binary directly or serve to use HTML gui

Serve at localhost:8023

cd emu8086
python3 server.py -f target/debug/emu8086

Direct usage

nasm -f  bin -o code.bin my_file.s
emu8086 -f code.bin