Skip to main content

Emulate Integrated Circuits

Project description

# ICemu - Emulate Integrated Circuits

`icemu` is a Python library that emulates integrated circuits at the logic level. For example,
if you want to simulate a circuit with a decoder driving the clock pin of two shift registers,
it would look like this:

dec = SN74HC138()
sr1 = CD74AC164()
sr2 = CD74AC164()
mcu_pin = OutputPin('PB4')

sr1.pin_CP.wire_to(dec.pin_Y0)
sr2.pin_CP.wire_to(dec.pin_Y1)
sr1.pin_DS1.wire_to(mcu_pin)
sr2.pin_DS1.wire_to(mcu_pin)

dec.update()
sr1.update()
sr2.update()

You could then play with pins at your heart contents and call `update()` when you want pin state
to "propagate" through wires and IC logic.

## See it in action

Here's a little video of `icemu` used in my [solar-timer][solar-timer] project:

[![asciinema](https://asciinema.org/a/8XM8TD9x1ZavzscsB2NUDYqeb.png)](https://asciinema.org/a/8XM8TD9x1ZavzscsB2NUDYqeb)

That timer has 3 7-segments led matrices driven my 3 shift registers themselves driven by a 3-8
decoder. These are all emulated in a virtual circuit and the output is the output of the led
matrices themselves.

## What is it for

The goal of this library is to facilitate the testing and debugging of embedded software. When we
run software on an embedded prototype, it's often hard to debug failures because we don't even
know if the problem comes from hardware (wiring, it's always the wiring!) or software. Moreover,
testing directly on a prototype often involves significant setup time.

With emulation, we have a quick setup time, introspection capabilities, all this stuff. We can then
confirm the soundness of our logic before sending it to our prototype.

## Why Python

Because it's used for debugging purposes, speed is not essential. Also, Python is easy to glue
with C.

I've tried writing quick `icemu` prototype in C and Rust, but they were needlessly complicated.
With Python, it's easy to write the software and add new chips. Because there's gonna be a *lot*
of these chips to add, we might as well make this process as fast as possible.

## How to use

You can install `icemu` with pip on python **3.4+**:

$ pip install --user icemu

Then, you need to recreate your prototype's logic in a small Python program that uses `icemu` and
wrap that into easy to use functions. Those functions should be designed to receive pin state
change from the MCU and apply the logic change into your circuit. Make that program print relevant
information so that you can assert your logic's soundness.

Then, write yourself a small Hardware Abstraction Layer at the pin/register level, embed your
Python program like a regular C application would do, make your `ifdef`ed functions call helper
functions you've written in your Python program, compile and run!

## Examples

You can find small examples is the `tests` folders, but the best way to get the grand idea is to
look at a project that uses it such as my [solar-timer][solar-timer]. Read the Simulation part of
the README to get started.

## License

LGPLv3, Copyright 2017 Virgil Dupras

[solar-timer]: https://github.com/hsoft/solar-timer

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

icemu-0.1.1.tar.gz (5.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

icemu-0.1.1-py3-none-any.whl (9.8 kB view details)

Uploaded Python 3

File details

Details for the file icemu-0.1.1.tar.gz.

File metadata

  • Download URL: icemu-0.1.1.tar.gz
  • Upload date:
  • Size: 5.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for icemu-0.1.1.tar.gz
Algorithm Hash digest
SHA256 553cdcead90fdd5710c139d17c28602979a75a0c41dab0e020a1f2bb6ffd519f
MD5 001fe37513e71fecb1f0400842d98cd8
BLAKE2b-256 ec483aad655637a56472631813fe9084334321aa7ff837980448370d00b91de1

See more details on using hashes here.

File details

Details for the file icemu-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for icemu-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ff59bf8c2d8f60b3631d39c4bf529e212d6bcd9ea028dc1464a8dc7d41303dc3
MD5 75406c89522be7b4f585796f83d821d8
BLAKE2b-256 87929e1100b82fccaee4a17b48aa5afd4a17a1db937afe17f185d4f69d952afa

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page