Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created April 11, 2020 15:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/abedee75951153c6f2b803416716abde to your computer and use it in GitHub Desktop.
Save r-ryantm/abedee75951153c6f2b803416716abde to your computer and use it in GitHub Desktop.
/nix/store/sv01db6mg4z8ssvdbdnr4nca3ngnjhq6-verilator-4.032
├── bin
│   ├── verilator
│   ├── verilator_bin
│   ├── verilator_bin_dbg
│   ├── verilator_coverage
│   ├── verilator_coverage_bin_dbg
│   ├── verilator_gantt
│   └── verilator_profcfunc
└── share
├── man
│   └── man1
│   ├── verilator.1.gz
│   ├── verilator_coverage.1.gz
│   ├── verilator_gantt.1.gz
│   └── verilator_profcfunc.1.gz
├── pkgconfig
│   └── verilator.pc
└── verilator
├── bin
│   └── verilator_includer
├── examples
│   ├── cmake_hello_c
│   │   ├── CMakeLists.txt
│   │   └── Makefile
│   ├── cmake_hello_sc
│   │   ├── CMakeLists.txt
│   │   └── Makefile
│   ├── cmake_protect_lib
│   │   ├── CMakeLists.txt
│   │   └── Makefile
│   ├── cmake_tracing_c
│   │   ├── CMakeLists.txt
│   │   └── Makefile
│   ├── cmake_tracing_sc
│   │   ├── CMakeLists.txt
│   │   └── Makefile
│   ├── make_hello_c
│   │   ├── Makefile
│   │   ├── sim_main.cpp
│   │   └── top.v
│   ├── make_hello_sc
│   │   ├── Makefile
│   │   ├── sc_main.cpp
│   │   └── top.v
│   ├── make_protect_lib
│   │   ├── Makefile
│   │   ├── secret_impl.v
│   │   ├── sim_main.cpp
│   │   └── top.v
│   ├── make_tracing_c
│   │   ├── input.vc
│   │   ├── Makefile
│   │   ├── Makefile_obj
│   │   ├── sim_main.cpp
│   │   ├── sub.v
│   │   └── top.v
│   └── make_tracing_sc
│   ├── input.vc
│   ├── Makefile
│   ├── Makefile_obj
│   ├── sc_main.cpp
│   ├── sub.v
│   └── top.v
├── include
│   ├── gtkwave
│   │   ├── fastlz.c
│   │   ├── fastlz.h
│   │   ├── fstapi.c
│   │   ├── fstapi.h
│   │   ├── fst_config.h
│   │   ├── lz4.c
│   │   ├── lz4.h
│   │   └── wavealloca.h
│   ├── verilated_config.h
│   ├── verilated_config.h.in
│   ├── verilated_cov.cpp
│   ├── verilated_cov.h
│   ├── verilated_cov_key.h
│   ├── verilated.cpp
│   ├── verilated_dpi.cpp
│   ├── verilated_dpi.h
│   ├── verilated_fst_c.cpp
│   ├── verilated_fst_c.h
│   ├── verilated.h
│   ├── verilated_heavy.h
│   ├── verilated_imp.h
│   ├── verilated.mk
│   ├── verilatedos.h
│   ├── verilated_save.cpp
│   ├── verilated_save.h
│   ├── verilated_sc.h
│   ├── verilated_sym_props.h
│   ├── verilated_syms.h
│   ├── verilated_threads.cpp
│   ├── verilated_threads.h
│   ├── verilated_unordered_set_map.h
│   ├── verilated.v
│   ├── verilated_vcd_c.cpp
│   ├── verilated_vcd_c.h
│   ├── verilated_vcd_sc.cpp
│   ├── verilated_vcd_sc.h
│   ├── verilated_vpi.cpp
│   ├── verilated_vpi.h
│   └── vltstd
│   ├── svdpi.h
│   └── vpi_user.h
├── verilator-config.cmake
└── verilator-config-version.cmake
21 directories, 87 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment