Git Setup


On ubuntu, hit ctrl+alt+t to open terminal. Type:

$ sudo apt-get install git

Don't include the dollar sign. That is to show that you are entering this as a normal user, not root. after entering your pasword, git will install.


Next, we will download the tritoncore. copy and paste the following lines into terminal:

$ cd ~/Desktop
$ git clone https://github.com/JackDavidson/OpenFPGACore-TritonCore.git
$ cd ./OpenFPGACore-TritonCore/TritonCoreI/src
$ sbt run

Press the number corresponding to LUTTestRunner or ShiftRegisterTestRunner to build and run a C++ emulator for the component. Other numbers correspond to other unit tests and verilog code export. We only need to know if a C++ emulator will properly compile on your system. There is no need to run the big tests yet, like FPGACoreTestRunner


Continue »