cfelton / myhdl_exercises

MyHDL exercises.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction

This repository contains a collection of IPython notebooks with MyHDL exercises (mex). These exercises can be used as a learning tool to learn hardware description and MyHDL.

Getting Started

First, clone the repository and run the ipython notebook in the cloned workspace:

>> git clone https://github.com/cfelton/myhdl_exercises
>> cd myhdl_exercises
>> ipython notebook

or

>> jupyter notebook

Next, to run the exercises the myhdl pacakge is required.
MyHDL can be installed via pypi:

>> pip install myhdl

Or the latest can be retrieved from:

>> git clone https://github.com/jandecaluwe/myhdl

To start IPython see the directions here

Once the packages are installed open the first notebook and verify all the cells can run.

Exercises

Other than the first exercise, each requires an HDL module to be defined and an existing test will verify if the HDL module is working correctly or not.

0 Getting started [00_mex_start_here][00_mex]

1 Defining a hardware module.  This exercise defines a basic
  shift register  [01_mex_shifty][00_mex]

2 Greatest common divisor [02_mex_gcd][02_mex]

3 Interfaces (small example) [03_mex_interfaces][03_mex] 

4 Tests [04_mex_tests][04_mex]

5 More tests [05_mex_more_tests][05_mex]

6 Modeling [06_mex_modeling][06_mex]

7 Music Box [07_mex_music_box][07_mex]

About

MyHDL exercises.

License:MIT License


Languages

Language:Jupyter Notebook 90.9%Language:Python 9.1%