-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial release.
- Loading branch information
0 parents
commit 38758f3
Showing
18 changed files
with
4,619 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# 8086tiny: a tiny, highly functional, highly portable PC emulator/VM | ||
# Copyright 2013, Adrian Cable (adrian.cable@gmail.com) - http://www.megalith.co.uk/8086tiny | ||
# | ||
# This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. | ||
# http://creativecommons.org/licenses/by-sa/3.0/ | ||
|
||
# Set -DNO_GRAPHICS to compile without SDL/graphics support | ||
OPTS=`sdl-config --cflags --libs` | ||
#OPTS=-DNO_GRAPHICS | ||
|
||
8086tiny: 8086tiny.c | ||
${CC} 8086tiny.c ${OPTS} -o 8086tiny -O3 -fsigned-char |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
8086tiny | ||
======== | ||
|
||
8086tiny is a completely free (MIT License) open source PC XT-compatible emulator/virtual machine written in C. It is, we believe, the smallest of its kind (the fully-commented source is under 25K). Despite its size, 8086tiny provides a highly accurate 8086 CPU emulation, together with support for PC peripherals including XT-style keyboard, floppy/hard disk, clock, and Hercules graphics. 8086tiny is powerful enough to run software like AutoCAD, Windows 3.0, and legacy PC games. | ||
|
||
8086tiny is highly portable and runs on practically any little endian machine, from simple 32-bit MCUs upwards. 8086tiny has successfully been deployed on 32-bit/64-bit Intel machines (Windows, Mac OS X and Linux), Nexus 4/ARM (Android), iPad 3 and iPhone 5S (iOS), and Raspberry Pi (Linux). | ||
|
||
The philosophy of 8086tiny is to keep the code base as small as possible, and through the open source license encourage individual developers to tune and extend it as per their specific requirements, adding support, for example, for more complex instruction sets (e.g. Pentium) or peripherals (e.g. mouse). Forking this repository is highly encouraged! | ||
|
||
Any questions, comments or suggestions are very welcome in our forum at 8086tiny.freeforums.net. |
Binary file not shown.
Oops, something went wrong.