Yee Yang Tan
Yee Yang Tan
- The commits are 54f289f, 205249d, ea46140. The rest of the commits are same as the new pull request #95 because I want to test the 3d torus for netrace....
Can you add a debugging option to output the command which is send to the simulator, for example: ``` vlog -v2k5 -incr -l xpm -l xil_defaultlib -work xil_defaultlib "+incdir+../../../../project.ip_user_files/ipstatic" \...
```vhdl package math_pack is -- This function calculates the base 2 logarithm of a number. -- -- .. vhdl:parameters:: log2 -- -- a : in unsigned -- The number of...
```vhdl package math_pack is function log2 parameter (a : unsigned) return integer; end package math_pack; package body math_pack is -- This function calculates the base 2 logarithm of a number....
same as title
``` package math_pack is -- This function calculates the base 2 logarithm of a number. -- a : in unsigned -- The number of which to calculate the logarithm procedure...
```VHDL -- This package provides basic mathematic functions utilised all through -- the design package math_pack is -- This function calculates the base 2 logarithm of a number. -- --...
```vhdl LIBRARY ieee; USE ieee.std_logic_1164.ALL; PACKAGE test_pkg IS CONSTANT C_NUM_1 : integer := 4; CONSTANT C_NUM_2 : integer := 2; TYPE t_slv_vector IS ARRAY (natural RANGE ) OF std_logic_vector; TYPE...
I provide 4 files to trigger this bug. 1. run.py (vunit script) 2. test_pkg.vhd 3. test.vhd 4. test_tb.vhd **run.py** ```python import vunit vu = vunit.VUnit.from_argv() vu.add_vhdl_builtins() lib = vu.add_library("sys") lib.add_source_files([...