* Small change in rtps_builtin_endpoint_test1 - Empty Signal was not toggling * Added rtps_builtin_endpoint_test2 - Compiling and Passing * Update rtps_test_package * Various bug Fixes in rtps_builtin_endpoint
17 lines
488 B
VHDL
17 lines
488 B
VHDL
library ieee;
|
|
use ieee.std_logic_1164.all;
|
|
use ieee.numeric_std.all;
|
|
|
|
library osvvm; -- Utility Library
|
|
context osvvm.OsvvmContext;
|
|
|
|
use work.rtps_test_package.all;
|
|
|
|
package ScoreBoardPkg_builtin_endpoint is new osvvm.ScoreboardGenericPkg
|
|
generic map (
|
|
ExpectedType => std_logic_vector,
|
|
ActualType => std_logic_vector,
|
|
Match => std_match,
|
|
expected_to_string => to_string1,
|
|
actual_to_string => to_string1
|
|
); |