versions vhd de sxlib obtenus a partir de sxlib.lib avec lc_shell

Ces fichiers doivent etre analyses par l'utilisateur localement.
This commit is contained in:
Franck Wajsburt 2000-05-29 16:34:44 +00:00
parent 87d2122623
commit 67e297faf2
7 changed files with 44690 additions and 0 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,58 @@
----------------------------------------------------------------
--
-- Created by the Synopsys Library Compiler 1999.10
-- FILENAME : sxlib_Vtables.vhd
-- FILE CONTENTS: VITAL Table Package
-- DATE CREATED : Mon May 29 15:16:04 2000
--
-- LIBRARY : sxlib
-- DATE ENTERED : Sat Oct 30 22:31:32 MET DST 1999
-- REVISION : 1.200000
-- TECHNOLOGY : cmos
-- TIME SCALE : 1 ns
-- LOGIC SYSTEM : IEEE-1164
-- NOTES :
-- HISTORY :
--
----------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.all;
-- synopsys translate_off
library IEEE;
use IEEE.VITAL_Timing.all;
use IEEE.VITAL_Primitives.all;
-- synopsys translate_on
package VTABLES is
CONSTANT L : VitalTableSymbolType := '0';
CONSTANT H : VitalTableSymbolType := '1';
CONSTANT x : VitalTableSymbolType := '-';
CONSTANT S : VitalTableSymbolType := 'S';
CONSTANT R : VitalTableSymbolType := '/';
CONSTANT U : VitalTableSymbolType := 'X';
CONSTANT V : VitalTableSymbolType := 'B'; -- valid clock signal (non-rising)
CONSTANT sff1_x4_q_tab : VitalStateTableType := (
( L, L, H, x, L ),
( L, H, H, x, H ),
( H, x, x, x, S ),
( x, x, L, x, S ));
CONSTANT sff2_x4_q_tab : VitalStateTableType := (
( L, L, L, x, H, x, L ),
( L, L, x, H, H, x, L ),
( L, H, H, x, H, x, H ),
( L, H, x, H, H, x, H ),
( L, x, L, L, H, x, L ),
( L, x, H, L, H, x, H ),
( H, x, x, x, x, x, S ),
( x, x, x, x, L, x, S ));
end VTABLES;
---- end of VITAL tables library ----

File diff suppressed because it is too large Load Diff