8000 Minor fixes by 3ll34ndr0 · Pull Request #5 · efabless/proton · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Minor fixes #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of se 8000 rvice and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions GUI/make_gui_support_func
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ if($SWITCH eq ""){$SWITCH = "also";}
if($TCL_FILE eq ""){return; print "WARN: write the tcl file Name\n";}

open (WRITE, ">$TCL_FILE");
print WRITE "#TCL written from proton verion-$TOOL_VERSION\n";
print WRITE "#TCL written from proton version-$TOOL_VERSION\n";
print WRITE "\n";
if ($TECH_LEF_FILE eq ""){
}else{
Expand Down Expand Up @@ -955,7 +955,7 @@ my $floorplan_ButtonFrame = $floorplan_tab->Frame(-relief=>"raised")->pack(-side
#if($TCL_FILE eq ""){return; print "WARN: write the tcl file Name\n";}
#
#open (WRITE, ">$TCL_FILE");
#print WRITE "#TCL written from proton verion-$TOOL_VERSION\n";
#print WRITE "#TCL written from proton version-$TOOL_VERSION\n";
#print WRITE "\n";
#if ($TECH_LEF_FILE eq ""){
#}else{
Expand Down Expand Up @@ -1691,7 +1691,7 @@ sub run_yosys_popup {
sub call_run_yosys_tool{
my $outputFile = $_[0];
open (WRITE, ">synthesis.tcl");
print WRITE "#TCL written from proton verion-$TOOL_VERSION\n";
print WRITE "#TCL written from proton version-$TOOL_VERSION\n";
my @rtlFiles = $GLOBAL->dbGlobalGetRtlFiles;
foreach my $rtl (@rtlFiles){
print WRITE "read_verilog $rtl\n";
Expand Down
Binary file added INSTALL/packages/vsdsynth.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion PARSER/make_rw_lib
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ if(exists $PLDB{$macroName}) {
my @timing_type = $TLDB{$macroName}->dbTimingLibGetPinTimingType($pinName);
my $delay_timing = 1;
#print "Timing type is @timing_type \n";
if(defined (@timing_type)) {
if(@timing_type) {
#print "Timing type exists\n";
foreach (@timing_type) {
if($_ =~ /setup/) {
Expand Down
0