invert polarity

This commit is contained in:
Francois Donnet 2004-06-04 16:25:43 +00:00
parent 33554c4d67
commit 62501bace7
2 changed files with 4 additions and 2 deletions

View File

@ -432,10 +432,11 @@ static void VasyVerilogTreatAsg( RtlFigure, RtlAsg )
( RtlType == RTL_BIVEX_FALLING_EDGE ) ) ( RtlType == RTL_BIVEX_FALLING_EDGE ) )
{ {
VexCond = RtlBiVex->VEX_COND; VexCond = RtlBiVex->VEX_COND;
SensName = GetVexAtomValue( VexCond ); SensName = GetVexAtomValue( VexCond );
if ( RtlType == RTL_BIVEX_FALLING_EDGE ) SensType = VASY_VERILOG_SENS_POSEDGE; if ( RtlType == RTL_BIVEX_FALLING_EDGE ) SensType = VASY_VERILOG_SENS_NEGEDGE;
else SensType = VASY_VERILOG_SENS_NEGEDGE; else SensType = VASY_VERILOG_SENS_POSEDGE;
SensList = addptype( SensList, SensType, SensName ); SensList = addptype( SensList, SensType, SensName );
} }

View File

@ -262,6 +262,7 @@ int main( argc, argv )
int Index; int Index;
printf("HELLO\n");
alliancebanner_with_contrib( alliancebanner_with_contrib(
"VASY", VERSION, "VHDL Analyzer for SYnthesis", "VASY", VERSION, "VHDL Analyzer for SYnthesis",
"2000", ALLIANCE_VERSION, "Ludovic Jacomme", "Frederic Petrot" ); "2000", ALLIANCE_VERSION, "Ludovic Jacomme", "Frederic Petrot" );