Giter Club home page Giter Club logo

chisel3-base's Introduction

A bare-bones Chisel 3 project that works as a starting point for larger projects, based off of Chick Markley's (slightly less bare-bones) dsp-chisel3.

Alternatively, a better approach may be to just use Jack Koenig's chisel3-skeleton as this uses fewer dependencies, doesn't require all the testing infrastructure, and just generates the Verilog.

Dependencies

Currently, all Chisel 3 development is not available in a Maven repository, so you must build and publish the necessary dependencies locally. For the following repositories, clone them and publish them locally:

For all of these run sbt publish-local. There may be some necessary ordering here, however. After publishing them locally, you will then see the associated directories in ~/.ivy2/local/edu.berkeley.cs/.

Usage

Modify ./build.sbt with the appropriate organization, version, and name fields. You can then write your Chisel 3 HDL code. The rough structure is as follows:

import chisel3._
import chisel3.iotesters.SteppedHWIOTester
import chisel3.testers.TesterDriver

class MyModule extends Module {}

class MyModuleTester extends SteppedHWIOTester {
  val device_under_test = Module(new MyModule)
}

object Tests {
  def main(args: Array[String]): Unit = {
    // Slice up the input args to 'run' so the first is the DUT
    val argsArray = args.slice(1, args.length)
    val res = args(0) match {
      case "MyModule" => TesterDriver.execute { () => new MyModuleTester }
    }
  }
}

An example is provided in Boolean.scala.

Notes

The testers provided by chisel3.iotesters are abstract and rely on a val device_under_test being defined.

chisel3-base's People

Contributors

seldridge avatar

Watchers

 avatar  avatar

Forkers

sbhakim cpehle

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.