blob: a4dd7b304606d38b320c1cff5399ccb5b28c676d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
library ieee;
use ieee.math_real.all;
entity ent is
end ent;
architecture a of ent is
constant DELAY_NSEC : real := -1.0;
constant DELAY_TAPS_INT : integer :=
integer(round(DELAY_NSEC / 0.078125));
begin
end a;
|