Skip to content
This repository has been archived by the owner on Sep 9, 2021. It is now read-only.

antmicro/emul8

 
 

Repository files navigation

Emul8

What is Emul8?

Emul8, as the name suggests, is an emulator of various embedded systems. With Emul8 you can develop embedded software entirely in a virtual environment that runs within your PC.

If that still doesn't tell you much, visit the Emul8 website to learn more.

Supported architectures

  • ARM Cortex-A and Cortex-M
  • SPARC
  • PowerPC
  • x86 (experimental)

Installation

Prerequisites (Mac)

The installation procedure on Mac is fairly straightforward, as you can use an official Mono release.

If not already present, install homebrew and then:

brew install binutils gnu-sed coreutils homebrew/versions/gcc49 dialog

Prerequisites (Linux)

The package names for prerequisites are given for Ubuntu 14.04 (please adjust those w/r to your distribution and version):

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
sudo apt-get update
sudo apt-get install git mono-complete automake autoconf libtool g++ realpath \
                     gksu libgtk2.0-dev dialog screen uml-utilities gtk-sharp2

Note

Emul8 requires mono version 5.0 or newer.

If you want to modify or extend the source code of Emul8, it is recommended to install the MonoDevelop IDE.

For a detailed information on the required packages, please consult the System requirements section in the documentation.

Getting the source

The Emul8 source code is available from GitHub:

git clone https://github.com/emul8/emul8.git

No need to init any submodules - this will be done automatically at a later stage.

Bootstrapping Emul8

Since Emul8 can be used for various purposes and not everyone needs all the modules and platforms, a simple bootstrapping system was created to make it easy to select the elements you need.

In order to create a solution file integrating the selected projects (.csproj files), use the Bootstrap tool:

./bootstrap.sh

and follow the instructions displayed on the screen. As a result a target directory with an Emul8.sln file will be created, ready to be built.

Note

If you just want to build everything, or for scripting purposes, instead of running in interactive mode, you can generate a solution containing all projects by executing:

./bootstrap.sh -a

Building Emul8

After bootstrapping the configuration (i.e., when an Emul8.sln file is created) it is possible to build it using:

./build.sh

Build scripts is configurable with additional flags, most useful of which are presented below:

-v          verbose mode
-d          build in debug configuration
-c          clean instead of building
-p          create deb/rpm/arch packages

Running Emul8

In order to run Emul8 use:

./run.sh [file]

where [file] is an optional argument - path to a script that should be loaded on startup.

Run scripts is configurable with additional flags, most useful of which are presented below:

-d            debug mode (requires prior build in debug configuration)
-e COMMAND    execute command on startup (does not allow the [file] argument)
-p            remove steering codes (e.g., colours) from output
-P PORT       listen on a port for monitor commands instead of opening a window
-h            help & usage

Documentation

The source of the documentation, available in compiled form on Read The Docs, is located in the doc folder. It is written in Sphinx, which can be installed as follows:

sudo apt-get install python-pip
sudo pip install sphinx

To compile the documentation, use:

make html     # build HTML output

Or:

make latexpdf # build PDF output, also requires LaTeX

License

Emul8 is released under the permissive MIT license. For details, See the LICENSE file.

Contributing

Contributions can be made using the GitHub pull requests mechanism and are very welcome! For details, see the CONTRIBUTING file.

About

The open source embedded systems emulation framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 90.9%
  • C 8.2%
  • Shell 0.5%
  • Python 0.4%
  • C++ 0.0%
  • Makefile 0.0%