dwboxsym: fix io pin type
authorDan White <dan@whiteaudio.com>
Fri, 3 Feb 2012 02:38:31 +0000 (20:38 -0600)
committerDan White <dan@whiteaudio.com>
Fri, 3 Feb 2012 02:38:31 +0000 (20:38 -0600)
dwboxsym

index 688c0fd3425e0fcf545ff8ba6ae410612139f256..ed00c96d6ba86a4532c00ce529d6082c2a325a71 100755 (executable)
--- a/dwboxsym
+++ b/dwboxsym
@@ -139,7 +139,7 @@ while (<>) {
            $pintype{$pin} = "in" if $flags =~ /i/;
            $pintype{$pin} = "out" if $flags =~ /o/;
            $pintype{$pin} = "pwr" if $flags =~ /p/;
-           $pintype{$pin} = "inout" if $flags =~ /io/;
+           $pintype{$pin} = "io" if $flags =~ /io/;
        } else {
            $pinlabel{$pin} = $rest;
        }