• Stars
    star
    102
  • Rank 324,366 (Top 7 %)
  • Language
    C
  • License
    MIT License
  • Created almost 11 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

8051/8052 emulator with curses-based UI

emu8051

8051/8052 emulator with curses-based UI

Binaries and info: http://iki.fi/sol/8051.html

Note on git history - when I wrote this, I kept version backups as zip files; I created the version history by submitting each of the zips in order. Apologies for the submit messages..

What

This is a simulator of the 8051/8052 microcontrollers. For sake of simplicity, I'm only referring to 8051, although the emulator can emulate either one. For more information about the 8-bit chip(s), please check out www.8052.com or look up the data sheets. Intel, being the originator of the architecture, naturally has information as well.

The 8051 is a pretty easy chip to play with, in both hardware and software. Hence, it's a good chip to use as an example when teaching about computer hardware. Unfortunately, the simulators in use in my school were a bit outdated, so I decided to write a new one.

The scope of the emulator is to help test and debug 8051 assembler programs. What is particularily left out is clock-cycle exact simulation of processor pins. (For instance, MUL is a 48-clock operation on the 8051. On which clock cycle does the CPU read the operands? Or write the result?). Such simulation might help in designing some hardware, but for most uses it is unneccessary and complicated.

The emulator is designed to have two separate modules, consisting of the emulator core and separate front-end. This enables the creation of different kinds of front-ends. For instance, this lets the user use the emulator core as a DLL in a C/C++ application which can simulate other kinds of hardware (such as leds, switches, displays, audio, or whatnot).

Simulation accuracy is valued over speed. Nevertheless, already at v.0.1 the emulator could run at over-realtime speeds on a P4/2.6GHz (running the emulator at over 12MHz). Based on profiler output, over half of the processing time is wasted on pipeline trashing when branching to the opcode functions. This could possibly be helped by JITing the code, but that is considered unneccessary at this point. Also, CPUs with shorter pipelines are not harmed by this behavior as badly.

License

The emulator core is written completely in ANSI C for portability, and the sources are available under the MIT license.

Copyright 2006 Jari Komppa

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Features

Current features include:

  • Full 8051 instruction set.

  • ncurses-based UI - works fine over SSH for instance.

  • The main view includes:

    • Memory view.
    • Stack view.
    • Opcode and disassembly view.
    • History view of SP, P0, P1, P2, P3, IP, IE, TMOD, TCON, TH0, TL0, TH1, TL1, SCON, PCON, A, B, R0, R1, R2, R3, R4, R5, R6, R7 and DPTR, as well as all processor status bits.
    • Cycle and real-time counter.
  • Other views include:

    • Logic board (leds'n'switches) view, with optional widgets such as 7-seg displays and 44780-style text output
    • Memory editor, showing all five types of memory at the same time
    • Options, where user can disable debug exceptions etc.
  • Support for all sorts of 8051 memory combinations - 128 or 256B internal RAM, 0-64k of external RAM and 0-64k of ROM. External RAM and ROM may even point at the same memory, enabling self-modifying code.

  • Loads Intel HEX files.

  • Support for exceptions on invalid instructions, odd stack behavior, and messing up important registers in interrupts. One breakpoint is also supported.

  • The emulator performs callbacks on register area or external memory read/write, which can be used to implement simulation of new special features or whatever is connected to the IO ports.

  • Timer 0 and 1 modes 0, 1, 2 and 3, as well as interrupt priorities.

Install

You need to install the ncurses lib development files, which is the only dependency.

On Debian/Ubuntu it is simply done as

sudo apt-get install libncurses5 libncurses5-dev

Code Style

Arguments to functions are prefixed with "a", such as in

static int read_mem(struct em8051 *aCPU, int aAddress)

Local variables are using standard snake case.

More Repositories

1

soloud

Free, easy, portable audio engine for games
C
1,617
star
2

proctree

Procedural tree mesh generator (and editor)
C
190
star
3

escapi

Extremely Simple Capture API (ESCAPI) - simple webcam API for windows
C++
177
star
4

ipc

Public domain single header inter process communication primitives
C
122
star
5

atanua

Atanua Real-Time Logic Simulator
C
102
star
6

sassy

Sassy Audio Spreadsheet
C
92
star
7

dxwrapper

DirectX 1-7 wrapper project for making old games run on new hardware
C++
78
star
8

img2spec

Image Spectrumizer - convert RGB images into zx spectrum -friendly data
C++
76
star
9

speccy

zx spectrum development tools
C
61
star
10

specnext

Collection of my projects for zx spectrum next
C
43
star
11

shadertoolkit

A toolkit of public domain single-header libraries for shader-based opengl apps
C
39
star
12

covert_action

Sid Meier's Covert Action (1990) modding tools
C
19
star
13

textgl

Software rendered GL subset for text mode demos
C++
18
star
14

spriterotator

non-destructive sprite rotator
C
16
star
15

lfac

LFAC - Low Fidelity Audio Codec
C++
14
star
16

physfs_magicstream

PhysFS fork with magic streams
C
12
star
17

d3

DialogTree (d3) game dialogue engine
C++
9
star
18

adventofcode2021

Advent of code 2021 framework, c/c++
C++
8
star
19

munray

MunRay - a raytracer with no redeeming value
C++
8
star
20

solvbe

Universal VESA VBE 1.2 emulator for windows XP (and later) command prompt
C++
7
star
21

tiefighter-ddwrapper

DirectDraw wrapper for Star Wars - TIE Fighter (1998)
C++
6
star
22

interjector

C code instrumenting tool
C++
6
star
23

litterae_finis

Text mode demo "Litterae Finis" (2013) source code
C++
6
star
24

2dglbasecode

Sol's 2d GL basecode
C
4
star
25

dmlitefix

Hack to make the Alesis DM Lite drumkit usable with VSTs.
C++
3
star
26

nextfli

ZX Spectrum Next specific animation encoder (autodesk flic inspired)
C
3
star
27

zak

Zak file format, for register dump-based music (mos 6581sid, mos 8580 sid, ay-3-8910, ym2149f, etc)
C++
3
star
28

cfl

Compressed File Library, a doom wad-like virtual filesystem for games
C++
2
star
29

lcov-latex

LaTeX output from LCOV
Perl
2
star
30

wordchain

Word chain generator, analyses word chain probabilities in text and generates new text randomly
C++
2
star