Skip to content

Instantly share code, notes, and snippets.

@rafaelnp
Last active March 15, 2022 23:50
Show Gist options
  • Save rafaelnp/54209202b0c2cf6c6871bce932cd5c27 to your computer and use it in GitHub Desktop.
Save rafaelnp/54209202b0c2cf6c6871bce932cd5c27 to your computer and use it in GitHub Desktop.
short description of fusesoc commands

Fusesoc examples

kind of a "crash course" on fusesoc, the usual commands used during a FPGA development cycle. A good starting point is to watch Olof's presentation at Wosh: https://www.youtube.com/watch?v=HOFYplIBSWM

create library (local)

fusesoc library add <library_name>

where can be a local filesystem or a git repository

list cores

fusesoc core list

generate make for vivado project

fusesoc run --setup --tool vivado <core_name> cd build make <core_name>.xpr

open project on the vivado gui

make build-gui

the complete cycle

  • setup
  • build
  • run

where <target> and <tool> are specified in the core file

fusesoc run --target <target> --tool <tool> <system> or fusesoc run --target <target> <system>

projects using fusesoc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment