Skip to content

Instantly share code, notes, and snippets.

View rodrigomelo9's full-sized avatar

Rodrigo A. Melo rodrigomelo9

View GitHub Profile
@rueycheng
rueycheng / GNU-Make.md
Last active June 25, 2024 13:22
GNU Make cheatsheet
@rain1024
rain1024 / tut.md
Last active June 26, 2024 09:50
Install pdflatex ubuntu

PdfLatex is a tool that converts Latex sources into PDF. This is specifically very important for researchers, as they use it to publish their findings. It could be installed very easily using Linux terminal, though this seems an annoying task on Windows. Installation commands are given below.

  • Install the TexLive base
sudo apt-get install texlive-latex-base
  • Also install the recommended and extra fonts to avoid running into the error [1], when trying to use pdflatex on latex files with more fonts.
@morganp
morganp / shm_waveforms.md
Last active August 10, 2023 02:49
Creating SHM waveforms with irun

To run a verilog simulation using irun and create a shm waveform file,

initial begin
  $shm_open("waves.shm"); $shm_probe("AS");
end

run with irun -access +r testcase.sv

Or create this tcl file: