blob: e6551cffd5e50a040cb0cc7b495a711b30c3a14a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
-- Author: Patrick Lehmann
-- License: MIT
--
-- A generic counter module used in the StopWatch example.
--
context StopWatch_ctx is
library IEEE;
use IEEE.std_logic_1164.all,
IEEE.numeric_std.all;
use work.StopWatch_pkg.all;
end context;
|