Skip to content

Commit

Permalink
fix an outdated 'use' in Driver.pm
Browse files Browse the repository at this point in the history
  • Loading branch information
archi committed Jun 15, 2020
1 parent 9f13c07 commit f8877cb
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/lib/Driver.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use WritePluginIni;
use Assembler;
use Tools;
use NetParser;
use Net;
use NetAlgo;
use CollectedData;

sub logError {
Expand Down Expand Up @@ -121,11 +121,13 @@ sub doEverything {
return 0;
}

# my $xml_file = $self->{input_dir} . $self->{project_name} . "_NetList.xml";
# if (not NetParser::parse($xml_file)) {
# logError("Could not parse XML '$xml_file'");
# return 0;
# }
my $xml_file = $self->{input_dir} . $self->{project_name} . "_NetList.xml";
if (not NetParser::parse($xml_file, $data)) {
logError("Could not parse XML '$xml_file'");
return 0;
}

$data->postProcess();

my $dsp_file = $self->{output_dir}."dsp.fw";
if (not Assembler::assemble($self->{input_dir}, $dsp_file)) {
Expand Down

0 comments on commit f8877cb

Please sign in to comment.