Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created May 10, 2020 23:39
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/6373a17d642fa1ac005c1ed813b7e585 to your computer and use it in GitHub Desktop.
Save r-ryantm/6373a17d642fa1ac005c1ed813b7e585 to your computer and use it in GitHub Desktop.
/nix/store/ngfrlvl7g4qhg7abcf75zzlh63pc8zh5-verilator-4.034
├── 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
│   └── xml_py
│   ├── Makefile
│   ├── 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_intrinsics.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_trace.h
│   ├── verilated_trace_imp.cpp
│   ├── 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
22 directories, 93 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment