diff --git a/eeschema/connection_graph.cpp b/eeschema/connection_graph.cpp index dbdebec46f..0d4061ab92 100644 --- a/eeschema/connection_graph.cpp +++ b/eeschema/connection_graph.cpp @@ -1003,9 +1003,6 @@ void CONNECTION_GRAPH::buildConnectionGraph() connection->SetSubgraphCode( subgraph->m_code ); } - for( auto it : invisible_pin_subgraphs ) - it.second->UpdateItemConnections(); - // Here we do all the local (sheet) processing of each subgraph, including assigning net // codes, merging subgraphs together that use label connections, etc. @@ -1085,8 +1082,6 @@ void CONNECTION_GRAPH::buildConnectionGraph() m_net_name_to_subgraphs_map[new_name].emplace_back( subgraph ); name = new_name; - - subgraph->UpdateItemConnections(); } else { @@ -1161,8 +1156,6 @@ void CONNECTION_GRAPH::buildConnectionGraph() assignNewNetCode( *connection ); } - subgraph->UpdateItemConnections(); - // Reset the flag for the next loop below subgraph->m_dirty = true; @@ -1332,8 +1325,6 @@ void CONNECTION_GRAPH::buildConnectionGraph() else assignNewNetCode( *subgraph->m_driver_connection ); - subgraph->UpdateItemConnections(); - wxLogTrace( ConnTrace, "Re-resolving drivers for %lu (%s)", subgraph->m_code, subgraph->m_driver_connection->Name() ); } @@ -1361,6 +1352,34 @@ void CONNECTION_GRAPH::buildConnectionGraph() for( CONNECTION_SUBGRAPH* subgraph : m_driver_subgraphs ) m_sheet_to_subgraphs_map[ subgraph->m_sheet ].emplace_back( subgraph ); + // Update item connections at this point so that neighbor propagation works + nextSubgraph.store( 0 ); + + auto preliminaryUpdateTask = + [&]() -> size_t + { + for( size_t subgraphId = nextSubgraph++; + subgraphId < m_driver_subgraphs.size(); + subgraphId = nextSubgraph++ ) + { + m_driver_subgraphs[subgraphId]->UpdateItemConnections(); + } + + return 1; + }; + + if( parallelThreadCount == 1 ) + preliminaryUpdateTask(); + else + { + for( size_t ii = 0; ii < parallelThreadCount; ++ii ) + returns[ii] = std::async( std::launch::async, preliminaryUpdateTask ); + + // Finalize the threads + for( size_t ii = 0; ii < parallelThreadCount; ++ii ) + returns[ii].wait(); + } + // Next time through the subgraphs, we do some post-processing to handle things like // connecting bus members to their neighboring subgraphs, and then propagate connections // through the hierarchy @@ -1405,7 +1424,6 @@ void CONNECTION_GRAPH::buildConnectionGraph() conn->Name(), subgraph->m_driver_connection->Name() ); conn->Clone( *subgraph->m_driver_connection ); - candidate->UpdateItemConnections(); candidate->m_dirty = false; } @@ -1477,68 +1495,86 @@ void CONNECTION_GRAPH::buildConnectionGraph() old_sg = old_sg->m_absorbed_by; old_sg->m_driver_connection->Clone( *conn ); - old_sg->UpdateItemConnections(); } } } } } + nextSubgraph.store( 0 ); + + auto updateItemConnectionsTask = + [&]() -> size_t + { + for( size_t subgraphId = nextSubgraph++; + subgraphId < m_driver_subgraphs.size(); + subgraphId = nextSubgraph++ ) + { + CONNECTION_SUBGRAPH* subgraph = m_driver_subgraphs[subgraphId]; + + subgraph->m_dirty = false; + subgraph->UpdateItemConnections(); + + // No other processing to do on buses + if( subgraph->m_driver_connection->IsBus() ) + continue; + + // As a visual aid, we can check sheet pins that are driven by themselves to see + // if they should be promoted to buses + + if( subgraph->m_driver->Type() == SCH_SHEET_PIN_T ) + { + SCH_SHEET_PIN* pin = static_cast( subgraph->m_driver ); + + if( SCH_SHEET* sheet = pin->GetParent() ) + { + wxString pinText = pin->GetText(); + SCH_SCREEN* screen = sheet->GetScreen(); + + for( SCH_ITEM* item : screen->Items().OfType( SCH_HIER_LABEL_T ) ) + { + SCH_HIERLABEL* label = static_cast( item ); + + if( label->GetText() == pinText ) + { + SCH_SHEET_PATH path = subgraph->m_sheet; + path.push_back( sheet ); + + SCH_CONNECTION* parent_conn = label->Connection( &path ); + + if( parent_conn && parent_conn->IsBus() ) + subgraph->m_driver_connection->SetType( CONNECTION_TYPE::BUS ); + + break; + } + } + + if( subgraph->m_driver_connection->IsBus() ) + continue; + } + } + } + + return 1; + }; + + if( parallelThreadCount == 1 ) + updateItemConnectionsTask(); + else + { + for( size_t ii = 0; ii < parallelThreadCount; ++ii ) + returns[ii] = std::async( std::launch::async, updateItemConnectionsTask ); + + // Finalize the threads + for( size_t ii = 0; ii < parallelThreadCount; ++ii ) + returns[ii].wait(); + } + m_net_code_to_subgraphs_map.clear(); m_net_name_to_subgraphs_map.clear(); for( CONNECTION_SUBGRAPH* subgraph : m_driver_subgraphs ) { - // Every driven subgraph should have been marked by now - if( subgraph->m_dirty ) - { - // TODO(JE) this should be caught by hierarchical sheet port/pin ERC, check this - // Reset to false so no complaints come up later - subgraph->m_dirty = false; - } - - if( subgraph->m_driver_connection->IsBus() ) - { - // No other processing to do on buses - continue; - } - else - { - // As a visual aid, we can check sheet pins that are driven by themselves to see - // if they should be promoted to buses - - if( subgraph->m_driver->Type() == SCH_SHEET_PIN_T ) - { - SCH_SHEET_PIN* pin = static_cast( subgraph->m_driver ); - - if( SCH_SHEET* sheet = pin->GetParent() ) - { - wxString pinText = pin->GetText(); - - for( auto item : sheet->GetScreen()->Items().OfType( SCH_HIER_LABEL_T ) ) - { - auto label = static_cast( item ); - - if( label->GetText() == pinText ) - { - SCH_SHEET_PATH path = subgraph->m_sheet; - path.push_back( sheet ); - - SCH_CONNECTION* parent_conn = label->Connection( &path ); - - if( parent_conn && parent_conn->IsBus() ) - subgraph->m_driver_connection->SetType( CONNECTION_TYPE::BUS ); - - break; - } - } - - if( subgraph->m_driver_connection->IsBus() ) - continue; - } - } - } - auto key = std::make_pair( subgraph->GetNetName(), subgraph->m_driver_connection->NetCode() ); m_net_code_to_subgraphs_map[ key ].push_back( subgraph ); @@ -1752,7 +1788,6 @@ void CONNECTION_GRAPH::propagateToNeighbors( CONNECTION_SUBGRAPH* aSubgraph ) else { neighbor_conn->Clone( *member ); - neighbor->UpdateItemConnections(); recacheSubgraphName( neighbor, neighbor_name ); @@ -1853,7 +1888,6 @@ void CONNECTION_GRAPH::propagateToNeighbors( CONNECTION_SUBGRAPH* aSubgraph ) wxString old_name = subgraph->m_driver_connection->Name(); subgraph->m_driver_connection->Clone( *conn ); - subgraph->UpdateItemConnections(); if( old_name != conn->Name() ) recacheSubgraphName( subgraph, old_name ); diff --git a/qa/eeschema/data/netlists/video/video.net b/qa/eeschema/data/netlists/video/video.net index cdc43409c2..68745c5a54 100644 --- a/qa/eeschema/data/netlists/video/video.net +++ b/qa/eeschema/data/netlists/video/video.net @@ -3152,45 +3152,45 @@ (node (ref "U11") (pin "132") (pinfunction "ADR6")) (node (ref "U23") (pin "39") (pinfunction "P39/INIT")) (node (ref "U24") (pin "143") (pinfunction "P143"))) - (net (code "12") (name "/BE-0") + (net (code "13") (name "/BE-0") (node (ref "U11") (pin "87") (pinfunction "BE0#")) (node (ref "U23") (pin "38") (pinfunction "P38")) (node (ref "U24") (pin "144") (pinfunction "P144"))) - (net (code "13") (name "/BE-1") + (net (code "14") (name "/BE-1") (node (ref "U11") (pin "63") (pinfunction "BE1#")) (node (ref "U23") (pin "37") (pinfunction "P37")) (node (ref "U24") (pin "145") (pinfunction "P145"))) - (net (code "14") (name "/BE-2") + (net (code "15") (name "/BE-2") (node (ref "U11") (pin "62") (pinfunction "BE2#")) (node (ref "U23") (pin "36") (pinfunction "P36")) (node (ref "U24") (pin "146") (pinfunction "P146"))) - (net (code "15") (name "/BE-3") + (net (code "16") (name "/BE-3") (node (ref "U11") (pin "60") (pinfunction "BE3#")) (node (ref "U23") (pin "35") (pinfunction "P35")) (node (ref "U24") (pin "147") (pinfunction "P147"))) - (net (code "16") (name "/BLANK-") + (net (code "18") (name "/BLANK-") (node (ref "U22") (pin "8") (pinfunction "P8")) (node (ref "U24") (pin "53") (pinfunction "P53")) (node (ref "U9") (pin "7") (pinfunction "BLANK"))) - (net (code "17") (name "/BLUE_IN") + (net (code "19") (name "/BLUE_IN") (node (ref "P3") (pin "1") (pinfunction "In")) (node (ref "R22") (pin "1")) (node (ref "R46") (pin "1"))) - (net (code "18") (name "/BLUE_OUT") + (net (code "20") (name "/BLUE_OUT") (node (ref "C60") (pin "2")) (node (ref "J4") (pin "3") (pinfunction "3")) (node (ref "R44") (pin "2")) (node (ref "U9") (pin "39") (pinfunction "BLU"))) - (net (code "19") (name "/BPCLK") + (net (code "21") (name "/BPCLK") (node (ref "U11") (pin "140") (pinfunction "BPCLK")) (node (ref "U23") (pin "30") (pinfunction "PGCK2"))) - (net (code "20") (name "/BT812_RD-") + (net (code "22") (name "/BT812_RD-") (node (ref "U10") (pin "86") (pinfunction "RD")) (node (ref "U23") (pin "71") (pinfunction "P71"))) - (net (code "21") (name "/BT812_WR-") + (net (code "23") (name "/BT812_WR-") (node (ref "U10") (pin "83") (pinfunction "WR")) (node (ref "U23") (pin "70") (pinfunction "P70"))) - (net (code "22") (name "/CAS0-") + (net (code "24") (name "/CAS0-") (node (ref "U12") (pin "40") (pinfunction "CAS0")) (node (ref "U13") (pin "40") (pinfunction "CAS0")) (node (ref "U14") (pin "40") (pinfunction "CAS0")) @@ -3200,7 +3200,7 @@ (node (ref "U18") (pin "40") (pinfunction "CAS0")) (node (ref "U19") (pin "40") (pinfunction "CAS0")) (node (ref "U24") (pin "57") (pinfunction "P57"))) - (net (code "23") (name "/CAS1-") + (net (code "25") (name "/CAS1-") (node (ref "U12") (pin "41") (pinfunction "CAS1")) (node (ref "U13") (pin "41") (pinfunction "CAS1")) (node (ref "U14") (pin "41") (pinfunction "CAS1")) @@ -3210,7 +3210,7 @@ (node (ref "U18") (pin "41") (pinfunction "CAS1")) (node (ref "U19") (pin "41") (pinfunction "CAS1")) (node (ref "U24") (pin "58") (pinfunction "P58"))) - (net (code "24") (name "/CAS2-") + (net (code "26") (name "/CAS2-") (node (ref "U12") (pin "42") (pinfunction "CAS2")) (node (ref "U13") (pin "42") (pinfunction "CAS2")) (node (ref "U14") (pin "42") (pinfunction "CAS2")) @@ -3220,7 +3220,7 @@ (node (ref "U18") (pin "42") (pinfunction "CAS2")) (node (ref "U19") (pin "42") (pinfunction "CAS2")) (node (ref "U24") (pin "59") (pinfunction "P59-INIT"))) - (net (code "25") (name "/CAS3-") + (net (code "27") (name "/CAS3-") (node (ref "U12") (pin "43") (pinfunction "CAS3")) (node (ref "U13") (pin "43") (pinfunction "CAS3")) (node (ref "U14") (pin "43") (pinfunction "CAS3")) @@ -3230,33 +3230,33 @@ (node (ref "U18") (pin "43") (pinfunction "CAS3")) (node (ref "U19") (pin "43") (pinfunction "CAS3")) (node (ref "U24") (pin "62") (pinfunction "P62"))) - (net (code "26") (name "/CLAMP") + (net (code "28") (name "/CLAMP") (node (ref "U22") (pin "7") (pinfunction "P7")) (node (ref "U24") (pin "75") (pinfunction "P75")) (node (ref "U8") (pin "37") (pinfunction "ZERO")) (node (ref "U8") (pin "59") (pinfunction "CLAMP"))) - (net (code "27") (name "/CLKCAD") + (net (code "29") (name "/CLKCAD") (node (ref "U22") (pin "2") (pinfunction "PGCK1")) (node (ref "U24") (pin "77") (pinfunction "P77")) (node (ref "U8") (pin "38") (pinfunction "BCLOCK")) (node (ref "U8") (pin "39") (pinfunction "GCLOCK")) (node (ref "U8") (pin "40") (pinfunction "RCLOCK"))) - (net (code "28") (name "/CLKCDA") + (net (code "30") (name "/CLKCDA") (node (ref "U22") (pin "79") (pinfunction "PGCK4")) (node (ref "U24") (pin "76") (pinfunction "P76")) (node (ref "U9") (pin "9") (pinfunction "CLOCK"))) - (net (code "29") (name "/CSYNC-OUT") + (net (code "31") (name "/CSYNC-OUT") (node (ref "R30") (pin "2")) (node (ref "U22") (pin "9") (pinfunction "P/A15")) (node (ref "U24") (pin "13") (pinfunction "TMS")) (node (ref "U9") (pin "8") (pinfunction "SYNC"))) - (net (code "30") (name "/CSYNCIN-") + (net (code "32") (name "/CSYNCIN-") (node (ref "U24") (pin "54") (pinfunction "P54")) (node (ref "U8") (pin "8") (pinfunction "CSYNC"))) - (net (code "31") (name "/C_OUT") + (net (code "33") (name "/C_OUT") (node (ref "J4") (pin "8") (pinfunction "P8")) (node (ref "R39") (pin "1"))) - (net (code "32") (name "/DQ0") + (net (code "34") (name "/DQ0") (node (ref "RR7") (pin "2") (pinfunction "2")) (node (ref "U10") (pin "92") (pinfunction "D0")) (node (ref "U11") (pin "100") (pinfunction "DQ0")) @@ -3265,7 +3265,7 @@ (node (ref "U3") (pin "2") (pinfunction "A0")) (node (ref "U8") (pin "16") (pinfunction "D0")) (node (ref "U9") (pin "14") (pinfunction "D0"))) - (net (code "33") (name "/DQ1") + (net (code "35") (name "/DQ1") (node (ref "RR7") (pin "3") (pinfunction "3")) (node (ref "U10") (pin "93") (pinfunction "D1")) (node (ref "U11") (pin "99") (pinfunction "DQ1")) @@ -3274,7 +3274,7 @@ (node (ref "U3") (pin "3") (pinfunction "A1")) (node (ref "U8") (pin "15") (pinfunction "D1")) (node (ref "U9") (pin "15") (pinfunction "D1"))) - (net (code "34") (name "/DQ2") + (net (code "36") (name "/DQ2") (node (ref "RR7") (pin "4") (pinfunction "4")) (node (ref "U10") (pin "94") (pinfunction "D2")) (node (ref "U11") (pin "98") (pinfunction "DQ2")) @@ -3283,7 +3283,7 @@ (node (ref "U3") (pin "4") (pinfunction "A2")) (node (ref "U8") (pin "14") (pinfunction "D2")) (node (ref "U9") (pin "16") (pinfunction "D2"))) - (net (code "35") (name "/DQ3") + (net (code "37") (name "/DQ3") (node (ref "RR7") (pin "5") (pinfunction "5")) (node (ref "U10") (pin "95") (pinfunction "D3")) (node (ref "U11") (pin "96") (pinfunction "DQ3")) @@ -3292,7 +3292,7 @@ (node (ref "U3") (pin "5") (pinfunction "A3")) (node (ref "U8") (pin "13") (pinfunction "D3")) (node (ref "U9") (pin "17") (pinfunction "D3"))) - (net (code "36") (name "/DQ4") + (net (code "38") (name "/DQ4") (node (ref "RR7") (pin "6") (pinfunction "6")) (node (ref "U10") (pin "96") (pinfunction "D4")) (node (ref "U11") (pin "95") (pinfunction "DQ4")) @@ -3301,7 +3301,7 @@ (node (ref "U3") (pin "6") (pinfunction "A4")) (node (ref "U8") (pin "12") (pinfunction "D4")) (node (ref "U9") (pin "18") (pinfunction "D4"))) - (net (code "37") (name "/DQ5") + (net (code "39") (name "/DQ5") (node (ref "RR7") (pin "7") (pinfunction "7")) (node (ref "U10") (pin "97") (pinfunction "D5")) (node (ref "U11") (pin "94") (pinfunction "DQ5")) @@ -3310,7 +3310,7 @@ (node (ref "U3") (pin "7") (pinfunction "A5")) (node (ref "U8") (pin "11") (pinfunction "D5")) (node (ref "U9") (pin "19") (pinfunction "D5"))) - (net (code "38") (name "/DQ6") + (net (code "40") (name "/DQ6") (node (ref "RR7") (pin "8") (pinfunction "8")) (node (ref "U10") (pin "99") (pinfunction "D6")) (node (ref "U11") (pin "92") (pinfunction "DQ6")) @@ -3319,7 +3319,7 @@ (node (ref "U3") (pin "8") (pinfunction "A6")) (node (ref "U8") (pin "10") (pinfunction "D6")) (node (ref "U9") (pin "20") (pinfunction "D6"))) - (net (code "39") (name "/DQ7") + (net (code "41") (name "/DQ7") (node (ref "RR7") (pin "9") (pinfunction "9")) (node (ref "U10") (pin "100") (pinfunction "D7")) (node (ref "U11") (pin "88") (pinfunction "DQ7")) @@ -3328,122 +3328,122 @@ (node (ref "U3") (pin "9") (pinfunction "A7")) (node (ref "U8") (pin "9") (pinfunction "D7")) (node (ref "U9") (pin "21") (pinfunction "D7"))) - (net (code "40") (name "/DQ8") + (net (code "42") (name "/DQ8") (node (ref "RR8") (pin "9") (pinfunction "9")) (node (ref "U11") (pin "86") (pinfunction "DQ8")) (node (ref "U23") (pin "97") (pinfunction "P97")) (node (ref "U24") (pin "32") (pinfunction "P32")) (node (ref "U4") (pin "2") (pinfunction "A0"))) - (net (code "41") (name "/DQ9") + (net (code "43") (name "/DQ9") (node (ref "RR8") (pin "8") (pinfunction "8")) (node (ref "U11") (pin "84") (pinfunction "DQ9")) (node (ref "U23") (pin "96") (pinfunction "P96")) (node (ref "U24") (pin "33") (pinfunction "P33")) (node (ref "U4") (pin "3") (pinfunction "A1"))) - (net (code "42") (name "/DQ10") + (net (code "44") (name "/DQ10") (node (ref "RR8") (pin "7") (pinfunction "7")) (node (ref "U11") (pin "83") (pinfunction "DQ10")) (node (ref "U23") (pin "95") (pinfunction "P95")) (node (ref "U24") (pin "34") (pinfunction "P34")) (node (ref "U4") (pin "4") (pinfunction "A2"))) - (net (code "43") (name "/DQ11") + (net (code "45") (name "/DQ11") (node (ref "RR8") (pin "6") (pinfunction "6")) (node (ref "U11") (pin "82") (pinfunction "DQ11")) (node (ref "U23") (pin "94") (pinfunction "P94")) (node (ref "U24") (pin "35") (pinfunction "P35")) (node (ref "U4") (pin "5") (pinfunction "A3"))) - (net (code "44") (name "/DQ12") + (net (code "46") (name "/DQ12") (node (ref "RR8") (pin "5") (pinfunction "5")) (node (ref "U11") (pin "80") (pinfunction "DQ12")) (node (ref "U23") (pin "93") (pinfunction "P93")) (node (ref "U24") (pin "36") (pinfunction "P36")) (node (ref "U4") (pin "6") (pinfunction "A4"))) - (net (code "45") (name "/DQ13") + (net (code "47") (name "/DQ13") (node (ref "RR8") (pin "4") (pinfunction "4")) (node (ref "U11") (pin "79") (pinfunction "DQ13")) (node (ref "U23") (pin "90") (pinfunction "P90")) (node (ref "U24") (pin "45") (pinfunction "P45")) (node (ref "U4") (pin "7") (pinfunction "A5"))) - (net (code "46") (name "/DQ14") + (net (code "48") (name "/DQ14") (node (ref "RR8") (pin "3") (pinfunction "3")) (node (ref "U11") (pin "78") (pinfunction "DQ14")) (node (ref "U23") (pin "88") (pinfunction "P88")) (node (ref "U24") (pin "46") (pinfunction "P46")) (node (ref "U4") (pin "8") (pinfunction "A6"))) - (net (code "47") (name "/DQ15") + (net (code "49") (name "/DQ15") (node (ref "RR8") (pin "2") (pinfunction "2")) (node (ref "U11") (pin "76") (pinfunction "DQ15")) (node (ref "U23") (pin "89") (pinfunction "P89")) (node (ref "U24") (pin "47") (pinfunction "P47")) (node (ref "U4") (pin "9") (pinfunction "A7"))) - (net (code "48") (name "/DQ16") + (net (code "50") (name "/DQ16") (node (ref "RR4") (pin "7") (pinfunction "7")) (node (ref "U11") (pin "157") (pinfunction "DQ16")) (node (ref "U5") (pin "2") (pinfunction "A0"))) - (net (code "49") (name "/DQ17") + (net (code "51") (name "/DQ17") (node (ref "RR4") (pin "9") (pinfunction "9")) (node (ref "U11") (pin "145") (pinfunction "DQ17")) (node (ref "U5") (pin "3") (pinfunction "A1"))) - (net (code "50") (name "/DQ18") + (net (code "52") (name "/DQ18") (node (ref "RR6") (pin "6") (pinfunction "6")) (node (ref "U11") (pin "133") (pinfunction "DQ18")) (node (ref "U5") (pin "4") (pinfunction "A2"))) - (net (code "51") (name "/DQ19") + (net (code "53") (name "/DQ19") (node (ref "RR6") (pin "8") (pinfunction "8")) (node (ref "U11") (pin "125") (pinfunction "DQ19")) (node (ref "U5") (pin "5") (pinfunction "A3"))) - (net (code "52") (name "/DQ20") + (net (code "54") (name "/DQ20") (node (ref "RR6") (pin "3") (pinfunction "3")) (node (ref "U11") (pin "117") (pinfunction "DQ20")) (node (ref "U5") (pin "6") (pinfunction "A4"))) - (net (code "53") (name "/DQ21") + (net (code "55") (name "/DQ21") (node (ref "RR5") (pin "6") (pinfunction "6")) (node (ref "U11") (pin "105") (pinfunction "DQ21")) (node (ref "U5") (pin "7") (pinfunction "A5"))) - (net (code "54") (name "/DQ22") + (net (code "56") (name "/DQ22") (node (ref "RR4") (pin "3") (pinfunction "3")) (node (ref "U11") (pin "93") (pinfunction "DQ22")) (node (ref "U5") (pin "8") (pinfunction "A6"))) - (net (code "55") (name "/DQ23") + (net (code "57") (name "/DQ23") (node (ref "RR4") (pin "5") (pinfunction "5")) (node (ref "U11") (pin "85") (pinfunction "DQ23")) (node (ref "U5") (pin "9") (pinfunction "A7"))) - (net (code "56") (name "/DQ24") + (net (code "58") (name "/DQ24") (node (ref "RR3") (pin "3") (pinfunction "3")) (node (ref "U11") (pin "77") (pinfunction "DQ24")) (node (ref "U6") (pin "2") (pinfunction "A0"))) - (net (code "57") (name "/DQ25") + (net (code "59") (name "/DQ25") (node (ref "RR3") (pin "9") (pinfunction "9")) (node (ref "U11") (pin "65") (pinfunction "DQ25")) (node (ref "U6") (pin "3") (pinfunction "A1"))) - (net (code "58") (name "/DQ26") + (net (code "60") (name "/DQ26") (node (ref "RR2") (pin "8") (pinfunction "8")) (node (ref "U11") (pin "53") (pinfunction "DQ26")) (node (ref "U6") (pin "4") (pinfunction "A2"))) - (net (code "59") (name "/DQ27") + (net (code "61") (name "/DQ27") (node (ref "RR2") (pin "5") (pinfunction "5")) (node (ref "U11") (pin "45") (pinfunction "DQ27")) (node (ref "U6") (pin "5") (pinfunction "A3"))) - (net (code "60") (name "/DQ28") + (net (code "62") (name "/DQ28") (node (ref "RR2") (pin "3") (pinfunction "3")) (node (ref "U11") (pin "37") (pinfunction "DQ28")) (node (ref "U6") (pin "6") (pinfunction "A4"))) - (net (code "61") (name "/DQ29") + (net (code "63") (name "/DQ29") (node (ref "RR1") (pin "8") (pinfunction "8")) (node (ref "U11") (pin "25") (pinfunction "DQ29")) (node (ref "U6") (pin "7") (pinfunction "A5"))) - (net (code "62") (name "/DQ30") + (net (code "64") (name "/DQ30") (node (ref "RR1") (pin "5") (pinfunction "5")) (node (ref "U11") (pin "13") (pinfunction "DQ30")) (node (ref "U6") (pin "8") (pinfunction "A6"))) - (net (code "63") (name "/DQ31") + (net (code "65") (name "/DQ31") (node (ref "RR1") (pin "3") (pinfunction "3")) (node (ref "U11") (pin "5") (pinfunction "DQ31")) (node (ref "U6") (pin "9") (pinfunction "A7"))) - (net (code "64") (name "/ESVIDEO-RVB/OE_RVB-") + (net (code "69") (name "/ESVIDEO-RVB/OE_RVB-") (node (ref "U8") (pin "57") (pinfunction "OE")) (node (ref "U9") (pin "29") (pinfunction "CR2"))) - (net (code "65") (name "/ESVIDEO-RVB/REF+") + (net (code "70") (name "/ESVIDEO-RVB/REF+") (node (ref "R37") (pin "2")) (node (ref "U8") (pin "64") (pinfunction "BREF+")) (node (ref "U8") (pin "65") (pinfunction "GREF+")) @@ -3454,7 +3454,7 @@ (node (ref "U8") (pin "78") (pinfunction "IOUT2")) (node (ref "U8") (pin "80") (pinfunction "IOUT1")) (node (ref "U8") (pin "82") (pinfunction "IOUT0"))) - (net (code "66") (name "/ESVIDEO-RVB/VAA") + (net (code "71") (name "/ESVIDEO-RVB/VAA") (node (ref "C33") (pin "1")) (node (ref "C34") (pin "1")) (node (ref "C35") (pin "1")) @@ -3472,30 +3472,30 @@ (node (ref "U9") (pin "34") (pinfunction "VAA")) (node (ref "U9") (pin "35") (pinfunction "VAA")) (node (ref "U9") (pin "36") (pinfunction "VAA"))) - (net (code "67") (name "/F_PALIN") + (net (code "72") (name "/F_PALIN") (node (ref "U10") (pin "104") (pinfunction "CLKX1")) (node (ref "U24") (pin "43") (pinfunction "PGCK2"))) - (net (code "68") (name "/GREEN_IN") + (net (code "73") (name "/GREEN_IN") (node (ref "C3") (pin "2")) (node (ref "P2") (pin "1") (pinfunction "In")) (node (ref "R23") (pin "1")) (node (ref "R45") (pin "1"))) - (net (code "69") (name "/GREEN_OUT") + (net (code "74") (name "/GREEN_OUT") (node (ref "C59") (pin "2")) (node (ref "J4") (pin "2") (pinfunction "2")) (node (ref "R43") (pin "2")) (node (ref "U9") (pin "38") (pinfunction "GRE"))) - (net (code "70") (name "/HD_PAL-") + (net (code "75") (name "/HD_PAL-") (node (ref "U10") (pin "36") (pinfunction "HRESET")) (node (ref "U24") (pin "52") (pinfunction "P52"))) - (net (code "71") (name "/IRQ-") + (net (code "76") (name "/IRQ-") (node (ref "U11") (pin "124") (pinfunction "IRQ#")) (node (ref "U24") (pin "149") (pinfunction "P149"))) - (net (code "72") (name "/IRQ_SRL") + (net (code "77") (name "/IRQ_SRL") (node (ref "RR2") (pin "7") (pinfunction "7")) (node (ref "U11") (pin "57") (pinfunction "EA0")) (node (ref "U24") (pin "134") (pinfunction "P134"))) - (net (code "73") (name "/MXA0") + (net (code "78") (name "/MXA0") (node (ref "U12") (pin "12") (pinfunction "A0")) (node (ref "U13") (pin "12") (pinfunction "A0")) (node (ref "U14") (pin "12") (pinfunction "A0")) @@ -3505,7 +3505,7 @@ (node (ref "U18") (pin "12") (pinfunction "A0")) (node (ref "U19") (pin "12") (pinfunction "A0")) (node (ref "U24") (pin "128") (pinfunction "P128"))) - (net (code "74") (name "/MXA1") + (net (code "79") (name "/MXA1") (node (ref "U12") (pin "13") (pinfunction "A1")) (node (ref "U13") (pin "13") (pinfunction "A1")) (node (ref "U14") (pin "13") (pinfunction "A1")) @@ -3515,7 +3515,7 @@ (node (ref "U18") (pin "13") (pinfunction "A1")) (node (ref "U19") (pin "13") (pinfunction "A1")) (node (ref "U24") (pin "127") (pinfunction "P127"))) - (net (code "75") (name "/MXA2") + (net (code "80") (name "/MXA2") (node (ref "U12") (pin "14") (pinfunction "A2")) (node (ref "U13") (pin "14") (pinfunction "A2")) (node (ref "U14") (pin "14") (pinfunction "A2")) @@ -3525,7 +3525,7 @@ (node (ref "U18") (pin "14") (pinfunction "A2")) (node (ref "U19") (pin "14") (pinfunction "A2")) (node (ref "U24") (pin "126") (pinfunction "P126"))) - (net (code "76") (name "/MXA3") + (net (code "81") (name "/MXA3") (node (ref "U12") (pin "15") (pinfunction "A3")) (node (ref "U13") (pin "15") (pinfunction "A3")) (node (ref "U14") (pin "15") (pinfunction "A3")) @@ -3535,7 +3535,7 @@ (node (ref "U18") (pin "15") (pinfunction "A3")) (node (ref "U19") (pin "15") (pinfunction "A3")) (node (ref "U24") (pin "125") (pinfunction "P125"))) - (net (code "77") (name "/MXA4") + (net (code "82") (name "/MXA4") (node (ref "U12") (pin "16") (pinfunction "A4")) (node (ref "U13") (pin "16") (pinfunction "A4")) (node (ref "U14") (pin "16") (pinfunction "A4")) @@ -3545,7 +3545,7 @@ (node (ref "U18") (pin "16") (pinfunction "A4")) (node (ref "U19") (pin "16") (pinfunction "A4")) (node (ref "U24") (pin "124") (pinfunction "P124"))) - (net (code "78") (name "/MXA5") + (net (code "83") (name "/MXA5") (node (ref "U12") (pin "17") (pinfunction "A5")) (node (ref "U13") (pin "17") (pinfunction "A5")) (node (ref "U14") (pin "17") (pinfunction "A5")) @@ -3555,7 +3555,7 @@ (node (ref "U18") (pin "17") (pinfunction "A5")) (node (ref "U19") (pin "17") (pinfunction "A5")) (node (ref "U24") (pin "123") (pinfunction "P123"))) - (net (code "79") (name "/MXA6") + (net (code "84") (name "/MXA6") (node (ref "U12") (pin "18") (pinfunction "A6")) (node (ref "U13") (pin "18") (pinfunction "A6")) (node (ref "U14") (pin "18") (pinfunction "A6")) @@ -3565,7 +3565,7 @@ (node (ref "U18") (pin "18") (pinfunction "A6")) (node (ref "U19") (pin "18") (pinfunction "A6")) (node (ref "U24") (pin "116") (pinfunction "P116"))) - (net (code "80") (name "/MXA7") + (net (code "85") (name "/MXA7") (node (ref "U12") (pin "28") (pinfunction "A7")) (node (ref "U13") (pin "28") (pinfunction "A7")) (node (ref "U14") (pin "28") (pinfunction "A7")) @@ -3575,7 +3575,7 @@ (node (ref "U18") (pin "28") (pinfunction "A7")) (node (ref "U19") (pin "28") (pinfunction "A7")) (node (ref "U24") (pin "115") (pinfunction "P115"))) - (net (code "81") (name "/MXA8") + (net (code "86") (name "/MXA8") (node (ref "U12") (pin "31") (pinfunction "A8")) (node (ref "U13") (pin "31") (pinfunction "A8")) (node (ref "U14") (pin "31") (pinfunction "A8")) @@ -3585,7 +3585,7 @@ (node (ref "U18") (pin "31") (pinfunction "A8")) (node (ref "U19") (pin "31") (pinfunction "A8")) (node (ref "U24") (pin "114") (pinfunction "P114-RDY"))) - (net (code "82") (name "/MXA9") + (net (code "87") (name "/MXA9") (node (ref "U12") (pin "32") (pinfunction "A9")) (node (ref "U13") (pin "32") (pinfunction "A9")) (node (ref "U14") (pin "32") (pinfunction "A9")) @@ -3595,7 +3595,7 @@ (node (ref "U18") (pin "32") (pinfunction "A9")) (node (ref "U19") (pin "32") (pinfunction "A9")) (node (ref "U24") (pin "113") (pinfunction "P113"))) - (net (code "83") (name "/MXA10") + (net (code "88") (name "/MXA10") (node (ref "U12") (pin "19") (pinfunction "A10")) (node (ref "U13") (pin "19") (pinfunction "A10")) (node (ref "U14") (pin "19") (pinfunction "A10")) @@ -3605,263 +3605,263 @@ (node (ref "U18") (pin "19") (pinfunction "A10")) (node (ref "U19") (pin "19") (pinfunction "A10")) (node (ref "U24") (pin "109") (pinfunction "P109"))) - (net (code "84") (name "/OE_PAL-") + (net (code "90") (name "/OE_PAL-") (node (ref "U10") (pin "46") (pinfunction "VTU_EN")) (node (ref "U10") (pin "47") (pinfunction "PIXEL_EN")) (node (ref "U9") (pin "28") (pinfunction "CR1"))) - (net (code "85") (name "/PCA0") + (net (code "91") (name "/PCA0") (node (ref "U10") (pin "84") (pinfunction "RS0")) (node (ref "U23") (pin "65") (pinfunction "P65")) (node (ref "U8") (pin "17") (pinfunction "A0")) (node (ref "U9") (pin "24") (pinfunction "RS0"))) - (net (code "86") (name "/PCA1") + (net (code "92") (name "/PCA1") (node (ref "U10") (pin "85") (pinfunction "RS1")) (node (ref "U23") (pin "64") (pinfunction "P64")) (node (ref "U8") (pin "18") (pinfunction "A1")) (node (ref "U9") (pin "25") (pinfunction "RS1"))) - (net (code "87") (name "/PCA2") + (net (code "93") (name "/PCA2") (node (ref "U23") (pin "63") (pinfunction "P63")) (node (ref "U8") (pin "19") (pinfunction "A2")) (node (ref "U9") (pin "26") (pinfunction "RS2"))) - (net (code "88") (name "/PTADR-") + (net (code "96") (name "/PTADR-") (node (ref "RR5") (pin "5") (pinfunction "5")) (node (ref "U11") (pin "107") (pinfunction "PTADR#")) (node (ref "U23") (pin "24") (pinfunction "SGCK2")) (node (ref "U24") (pin "14") (pinfunction "P14"))) - (net (code "89") (name "/PTATN-") + (net (code "97") (name "/PTATN-") (node (ref "RR5") (pin "2") (pinfunction "2")) (node (ref "U11") (pin "114") (pinfunction "PTATN#")) (node (ref "U23") (pin "18") (pinfunction "P18")) (node (ref "U24") (pin "4") (pinfunction "P4"))) - (net (code "90") (name "/PTBE-0") + (net (code "98") (name "/PTBE-0") (node (ref "U11") (pin "116") (pinfunction "PTBE0#")) (node (ref "U23") (pin "20") (pinfunction "P20")) (node (ref "U24") (pin "158") (pinfunction "P158"))) - (net (code "91") (name "/PTBE-1") + (net (code "99") (name "/PTBE-1") (node (ref "U11") (pin "118") (pinfunction "PTBE1#")) (node (ref "U23") (pin "21") (pinfunction "P21")) (node (ref "U24") (pin "157") (pinfunction "P157"))) - (net (code "92") (name "/PTBE-2") + (net (code "100") (name "/PTBE-2") (node (ref "U11") (pin "119") (pinfunction "PTBE2#")) (node (ref "U23") (pin "22") (pinfunction "P22")) (node (ref "U24") (pin "156") (pinfunction "P156"))) - (net (code "93") (name "/PTBE-3") + (net (code "101") (name "/PTBE-3") (node (ref "U11") (pin "120") (pinfunction "PTBE3#")) (node (ref "U23") (pin "23") (pinfunction "P23")) (node (ref "U24") (pin "155") (pinfunction "P155"))) - (net (code "94") (name "/PTBURST") + (net (code "103") (name "/PTBURST") (node (ref "U11") (pin "112") (pinfunction "PTBURST#")) (node (ref "U23") (pin "17") (pinfunction "P17")) (node (ref "U24") (pin "5") (pinfunction "P5"))) - (net (code "95") (name "/PTNUM0") + (net (code "104") (name "/PTNUM0") (node (ref "U11") (pin "123") (pinfunction "PTNUM0")) (node (ref "U23") (pin "34") (pinfunction "P34")) (node (ref "U24") (pin "150") (pinfunction "P150"))) - (net (code "96") (name "/PTNUM1") + (net (code "105") (name "/PTNUM1") (node (ref "U11") (pin "122") (pinfunction "PTNUM1")) (node (ref "U23") (pin "32") (pinfunction "P32")) (node (ref "U24") (pin "154") (pinfunction "P154"))) - (net (code "97") (name "/PTRDY-") + (net (code "106") (name "/PTRDY-") (node (ref "RR6") (pin "2") (pinfunction "2")) (node (ref "U11") (pin "115") (pinfunction "PTRDY#")) (node (ref "U23") (pin "19") (pinfunction "P19")) (node (ref "U24") (pin "3") (pinfunction "P3"))) - (net (code "98") (name "/PTWR") + (net (code "107") (name "/PTWR") (node (ref "U11") (pin "108") (pinfunction "PTWR")) (node (ref "U23") (pin "16") (pinfunction "P16")) (node (ref "U24") (pin "12") (pinfunction "P12"))) - (net (code "99") (name "/RAS0-") + (net (code "108") (name "/RAS0-") (node (ref "U19") (pin "34") (pinfunction "RAS2")) (node (ref "U19") (pin "44") (pinfunction "RAS0")) (node (ref "U24") (pin "74") (pinfunction "P74"))) - (net (code "100") (name "/RAS1-") + (net (code "109") (name "/RAS1-") (node (ref "U18") (pin "34") (pinfunction "RAS2")) (node (ref "U18") (pin "44") (pinfunction "RAS0")) (node (ref "U24") (pin "73") (pinfunction "P73"))) - (net (code "101") (name "/RAS2-") + (net (code "110") (name "/RAS2-") (node (ref "U17") (pin "34") (pinfunction "RAS2")) (node (ref "U17") (pin "44") (pinfunction "RAS0")) (node (ref "U24") (pin "69") (pinfunction "P69"))) - (net (code "102") (name "/RAS3-") + (net (code "111") (name "/RAS3-") (node (ref "U15") (pin "34") (pinfunction "RAS2")) (node (ref "U15") (pin "44") (pinfunction "RAS0")) (node (ref "U24") (pin "68") (pinfunction "P68"))) - (net (code "103") (name "/RAS4-") + (net (code "112") (name "/RAS4-") (node (ref "U16") (pin "34") (pinfunction "RAS2")) (node (ref "U16") (pin "44") (pinfunction "RAS0")) (node (ref "U24") (pin "67") (pinfunction "P67"))) - (net (code "104") (name "/RAS5-") + (net (code "113") (name "/RAS5-") (node (ref "U12") (pin "34") (pinfunction "RAS2")) (node (ref "U12") (pin "44") (pinfunction "RAS0")) (node (ref "U24") (pin "66") (pinfunction "P66"))) - (net (code "105") (name "/RAS6-") + (net (code "114") (name "/RAS6-") (node (ref "U14") (pin "34") (pinfunction "RAS2")) (node (ref "U14") (pin "44") (pinfunction "RAS0")) (node (ref "U24") (pin "65") (pinfunction "P65"))) - (net (code "106") (name "/RAS7-") + (net (code "115") (name "/RAS7-") (node (ref "U13") (pin "34") (pinfunction "RAS2")) (node (ref "U13") (pin "44") (pinfunction "RAS0")) (node (ref "U24") (pin "64") (pinfunction "P64"))) - (net (code "107") (name "/RDCAD-") + (net (code "116") (name "/RDCAD-") (node (ref "U23") (pin "74") (pinfunction "P74/BUSY")) (node (ref "U8") (pin "20") (pinfunction "RD"))) - (net (code "108") (name "/RDCDA-") + (net (code "117") (name "/RDCDA-") (node (ref "U23") (pin "72") (pinfunction "P72")) (node (ref "U9") (pin "22") (pinfunction "WR"))) - (net (code "109") (name "/RDEMPTY") + (net (code "118") (name "/RDEMPTY") (node (ref "U11") (pin "106") (pinfunction "RDEMPTY")) (node (ref "U24") (pin "15") (pinfunction "P15"))) - (net (code "110") (name "/RDFIFO-") + (net (code "119") (name "/RDFIFO-") (node (ref "RR5") (pin "7") (pinfunction "7")) (node (ref "U11") (pin "104") (pinfunction "RDFIFO#")) (node (ref "U24") (pin "16") (pinfunction "P16"))) - (net (code "111") (name "/RED_IN") + (net (code "120") (name "/RED_IN") (node (ref "C4") (pin "2")) (node (ref "P1") (pin "1") (pinfunction "In")) (node (ref "R24") (pin "1")) (node (ref "R47") (pin "1"))) - (net (code "112") (name "/RED_OUT") + (net (code "121") (name "/RED_OUT") (node (ref "C58") (pin "2")) (node (ref "J4") (pin "1") (pinfunction "1")) (node (ref "R42") (pin "2")) (node (ref "U9") (pin "37") (pinfunction "RED"))) - (net (code "113") (name "/SELECT-") + (net (code "122") (name "/SELECT-") (node (ref "RR3") (pin "4") (pinfunction "4")) (node (ref "U11") (pin "75") (pinfunction "SELECT#")) (node (ref "U23") (pin "45") (pinfunction "P45")) (node (ref "U24") (pin "135") (pinfunction "P135"))) - (net (code "114") (name "/SYSRST-") + (net (code "123") (name "/SYSRST-") (node (ref "U10") (pin "87") (pinfunction "RESET")) (node (ref "U11") (pin "126") (pinfunction "SYSRST#")) (node (ref "U23") (pin "1") (pinfunction "P1")) (node (ref "U24") (pin "148") (pinfunction "P148"))) - (net (code "115") (name "/TVB0") + (net (code "124") (name "/TVB0") (node (ref "U10") (pin "55") (pinfunction "B0")) (node (ref "U22") (pin "92") (pinfunction "P92")) (node (ref "U8") (pin "32") (pinfunction "B0")) (node (ref "U9") (pin "61") (pinfunction "B0"))) - (net (code "116") (name "/TVB1") + (net (code "125") (name "/TVB1") (node (ref "U10") (pin "54") (pinfunction "B1")) (node (ref "U22") (pin "93") (pinfunction "P93")) (node (ref "U8") (pin "31") (pinfunction "B1")) (node (ref "U9") (pin "62") (pinfunction "B1"))) - (net (code "117") (name "/TVB2") + (net (code "126") (name "/TVB2") (node (ref "U10") (pin "53") (pinfunction "B2")) (node (ref "U22") (pin "94") (pinfunction "P94")) (node (ref "U8") (pin "30") (pinfunction "B2")) (node (ref "U9") (pin "63") (pinfunction "B2"))) - (net (code "118") (name "/TVB3") + (net (code "127") (name "/TVB3") (node (ref "U10") (pin "52") (pinfunction "B3")) (node (ref "U22") (pin "95") (pinfunction "P91")) (node (ref "U8") (pin "29") (pinfunction "B3")) (node (ref "U9") (pin "64") (pinfunction "B3"))) - (net (code "119") (name "/TVB4") + (net (code "128") (name "/TVB4") (node (ref "U10") (pin "51") (pinfunction "B4")) (node (ref "U22") (pin "96") (pinfunction "P96")) (node (ref "U8") (pin "28") (pinfunction "B4")) (node (ref "U9") (pin "65") (pinfunction "B4"))) - (net (code "120") (name "/TVB5") + (net (code "129") (name "/TVB5") (node (ref "U10") (pin "50") (pinfunction "B5")) (node (ref "U22") (pin "97") (pinfunction "P97")) (node (ref "U8") (pin "27") (pinfunction "B5")) (node (ref "U9") (pin "66") (pinfunction "B5"))) - (net (code "121") (name "/TVB6") + (net (code "130") (name "/TVB6") (node (ref "U10") (pin "49") (pinfunction "B6")) (node (ref "U22") (pin "98") (pinfunction "P98")) (node (ref "U8") (pin "26") (pinfunction "B6")) (node (ref "U9") (pin "67") (pinfunction "B6"))) - (net (code "122") (name "/TVB7") + (net (code "131") (name "/TVB7") (node (ref "U10") (pin "48") (pinfunction "B7")) (node (ref "U22") (pin "99") (pinfunction "SGCK1")) (node (ref "U8") (pin "25") (pinfunction "B7")) (node (ref "U9") (pin "68") (pinfunction "B7"))) - (net (code "123") (name "/TVG0") + (net (code "133") (name "/TVG0") (node (ref "U10") (pin "74") (pinfunction "G0")) (node (ref "U22") (pin "67") (pinfunction "P67")) (node (ref "U8") (pin "48") (pinfunction "G0")) (node (ref "U9") (pin "53") (pinfunction "G0"))) - (net (code "124") (name "/TVG1") + (net (code "134") (name "/TVG1") (node (ref "U10") (pin "73") (pinfunction "G1")) (node (ref "U22") (pin "68") (pinfunction "P68")) (node (ref "U8") (pin "47") (pinfunction "G1")) (node (ref "U9") (pin "54") (pinfunction "G1"))) - (net (code "125") (name "/TVG2") + (net (code "135") (name "/TVG2") (node (ref "U10") (pin "72") (pinfunction "G2")) (node (ref "U22") (pin "69") (pinfunction "P69")) (node (ref "U8") (pin "46") (pinfunction "G2")) (node (ref "U9") (pin "55") (pinfunction "G2"))) - (net (code "126") (name "/TVG3") + (net (code "136") (name "/TVG3") (node (ref "U10") (pin "71") (pinfunction "G3")) (node (ref "U22") (pin "70") (pinfunction "P70")) (node (ref "U8") (pin "45") (pinfunction "G3")) (node (ref "U9") (pin "56") (pinfunction "G3"))) - (net (code "127") (name "/TVG4") + (net (code "137") (name "/TVG4") (node (ref "U10") (pin "70") (pinfunction "G4")) (node (ref "U22") (pin "71") (pinfunction "P71/RDY")) (node (ref "U8") (pin "36") (pinfunction "G4")) (node (ref "U9") (pin "57") (pinfunction "G4"))) - (net (code "128") (name "/TVG5") + (net (code "138") (name "/TVG5") (node (ref "U10") (pin "69") (pinfunction "G5")) (node (ref "U22") (pin "78") (pinfunction "P78")) (node (ref "U8") (pin "35") (pinfunction "G5")) (node (ref "U9") (pin "58") (pinfunction "G5"))) - (net (code "129") (name "/TVG6") + (net (code "139") (name "/TVG6") (node (ref "U10") (pin "68") (pinfunction "G6")) (node (ref "U22") (pin "80") (pinfunction "P80")) (node (ref "U8") (pin "34") (pinfunction "G6")) (node (ref "U9") (pin "59") (pinfunction "G6"))) - (net (code "130") (name "/TVG7") + (net (code "140") (name "/TVG7") (node (ref "U10") (pin "67") (pinfunction "G7")) (node (ref "U22") (pin "81") (pinfunction "P81")) (node (ref "U8") (pin "33") (pinfunction "G7")) (node (ref "U9") (pin "60") (pinfunction "G7"))) - (net (code "131") (name "/TVI0") + (net (code "142") (name "/TVI0") (node (ref "U24") (pin "108") (pinfunction "P108")) (node (ref "U9") (pin "10") (pinfunction "OL0"))) - (net (code "132") (name "/TVI1") + (net (code "143") (name "/TVI1") (node (ref "U24") (pin "107") (pinfunction "P107")) (node (ref "U9") (pin "11") (pinfunction "OL1"))) - (net (code "133") (name "/TVR0") + (net (code "145") (name "/TVR0") (node (ref "U10") (pin "65") (pinfunction "R0")) (node (ref "U22") (pin "82") (pinfunction "P82")) (node (ref "U8") (pin "56") (pinfunction "R0")) (node (ref "U9") (pin "45") (pinfunction "R0"))) - (net (code "134") (name "/TVR1") + (net (code "146") (name "/TVR1") (node (ref "U10") (pin "64") (pinfunction "R1")) (node (ref "U22") (pin "83") (pinfunction "P83")) (node (ref "U8") (pin "55") (pinfunction "R1")) (node (ref "U9") (pin "46") (pinfunction "R1"))) - (net (code "135") (name "/TVR2") + (net (code "147") (name "/TVR2") (node (ref "U10") (pin "63") (pinfunction "R2")) (node (ref "U22") (pin "84") (pinfunction "P84")) (node (ref "U8") (pin "54") (pinfunction "R2")) (node (ref "U9") (pin "47") (pinfunction "R2"))) - (net (code "136") (name "/TVR3") + (net (code "148") (name "/TVR3") (node (ref "U10") (pin "62") (pinfunction "R3")) (node (ref "U22") (pin "85") (pinfunction "P85")) (node (ref "U8") (pin "53") (pinfunction "R3")) (node (ref "U9") (pin "48") (pinfunction "R3"))) - (net (code "137") (name "/TVR4") + (net (code "149") (name "/TVR4") (node (ref "U10") (pin "61") (pinfunction "R4")) (node (ref "U22") (pin "86") (pinfunction "P86")) (node (ref "U8") (pin "52") (pinfunction "R4")) (node (ref "U9") (pin "49") (pinfunction "R4"))) - (net (code "138") (name "/TVR5") + (net (code "150") (name "/TVR5") (node (ref "U10") (pin "60") (pinfunction "R5")) (node (ref "U22") (pin "87") (pinfunction "P87")) (node (ref "U8") (pin "51") (pinfunction "R5")) (node (ref "U9") (pin "50") (pinfunction "R5"))) - (net (code "139") (name "/TVR6") + (net (code "151") (name "/TVR6") (node (ref "U10") (pin "59") (pinfunction "R6")) (node (ref "U22") (pin "90") (pinfunction "P90")) (node (ref "U8") (pin "50") (pinfunction "R6")) (node (ref "U9") (pin "51") (pinfunction "R6"))) - (net (code "140") (name "/TVR7") + (net (code "152") (name "/TVR7") (node (ref "U10") (pin "58") (pinfunction "R7")) (node (ref "U22") (pin "91") (pinfunction "P91")) (node (ref "U8") (pin "49") (pinfunction "R7")) (node (ref "U9") (pin "52") (pinfunction "R7"))) - (net (code "141") (name "/TVRAM0") + (net (code "153") (name "/TVRAM0") (node (ref "U12") (pin "2") (pinfunction "DQ0")) (node (ref "U13") (pin "2") (pinfunction "DQ0")) (node (ref "U14") (pin "2") (pinfunction "DQ0")) @@ -3872,7 +3872,7 @@ (node (ref "U19") (pin "2") (pinfunction "DQ0")) (node (ref "U22") (pin "17") (pinfunction "P17")) (node (ref "U3") (pin "18") (pinfunction "B0"))) - (net (code "142") (name "/TVRAM1") + (net (code "154") (name "/TVRAM1") (node (ref "U12") (pin "4") (pinfunction "DQ1")) (node (ref "U13") (pin "4") (pinfunction "DQ1")) (node (ref "U14") (pin "4") (pinfunction "DQ1")) @@ -3883,7 +3883,7 @@ (node (ref "U19") (pin "4") (pinfunction "DQ1")) (node (ref "U22") (pin "19") (pinfunction "P19")) (node (ref "U3") (pin "17") (pinfunction "B1"))) - (net (code "143") (name "/TVRAM2") + (net (code "155") (name "/TVRAM2") (node (ref "U12") (pin "6") (pinfunction "DQ2")) (node (ref "U13") (pin "6") (pinfunction "DQ2")) (node (ref "U14") (pin "6") (pinfunction "DQ2")) @@ -3894,7 +3894,7 @@ (node (ref "U19") (pin "6") (pinfunction "DQ2")) (node (ref "U22") (pin "20") (pinfunction "P20")) (node (ref "U3") (pin "16") (pinfunction "B2"))) - (net (code "144") (name "/TVRAM3") + (net (code "156") (name "/TVRAM3") (node (ref "U12") (pin "8") (pinfunction "DQ3")) (node (ref "U13") (pin "8") (pinfunction "DQ3")) (node (ref "U14") (pin "8") (pinfunction "DQ3")) @@ -3905,7 +3905,7 @@ (node (ref "U19") (pin "8") (pinfunction "DQ3")) (node (ref "U22") (pin "18") (pinfunction "P18")) (node (ref "U3") (pin "15") (pinfunction "B3"))) - (net (code "145") (name "/TVRAM4") + (net (code "157") (name "/TVRAM4") (node (ref "U12") (pin "20") (pinfunction "DQ4")) (node (ref "U13") (pin "20") (pinfunction "DQ4")) (node (ref "U14") (pin "20") (pinfunction "DQ4")) @@ -3916,7 +3916,7 @@ (node (ref "U19") (pin "20") (pinfunction "DQ4")) (node (ref "U22") (pin "28") (pinfunction "P/HDC")) (node (ref "U3") (pin "14") (pinfunction "B4"))) - (net (code "146") (name "/TVRAM5") + (net (code "158") (name "/TVRAM5") (node (ref "U12") (pin "22") (pinfunction "DQ5")) (node (ref "U13") (pin "22") (pinfunction "DQ5")) (node (ref "U14") (pin "22") (pinfunction "DQ5")) @@ -3927,7 +3927,7 @@ (node (ref "U19") (pin "22") (pinfunction "DQ5")) (node (ref "U22") (pin "29") (pinfunction "P29")) (node (ref "U3") (pin "13") (pinfunction "B5"))) - (net (code "147") (name "/TVRAM6") + (net (code "159") (name "/TVRAM6") (node (ref "U12") (pin "24") (pinfunction "DQ6")) (node (ref "U13") (pin "24") (pinfunction "DQ6")) (node (ref "U14") (pin "24") (pinfunction "DQ6")) @@ -3938,7 +3938,7 @@ (node (ref "U19") (pin "24") (pinfunction "DQ6")) (node (ref "U22") (pin "31") (pinfunction "P31")) (node (ref "U3") (pin "12") (pinfunction "B6"))) - (net (code "148") (name "/TVRAM7") + (net (code "160") (name "/TVRAM7") (node (ref "U12") (pin "26") (pinfunction "DQ7")) (node (ref "U13") (pin "26") (pinfunction "DQ7")) (node (ref "U14") (pin "26") (pinfunction "DQ7")) @@ -3949,7 +3949,7 @@ (node (ref "U19") (pin "26") (pinfunction "DQ7")) (node (ref "U22") (pin "32") (pinfunction "P32")) (node (ref "U3") (pin "11") (pinfunction "B7"))) - (net (code "149") (name "/TVRAM8") + (net (code "161") (name "/TVRAM8") (node (ref "U12") (pin "49") (pinfunction "DQ8")) (node (ref "U13") (pin "49") (pinfunction "DQ8")) (node (ref "U14") (pin "49") (pinfunction "DQ8")) @@ -3960,7 +3960,7 @@ (node (ref "U19") (pin "49") (pinfunction "DQ8")) (node (ref "U22") (pin "33") (pinfunction "P33")) (node (ref "U4") (pin "18") (pinfunction "B0"))) - (net (code "150") (name "/TVRAM9") + (net (code "162") (name "/TVRAM9") (node (ref "U12") (pin "51") (pinfunction "DQ9")) (node (ref "U13") (pin "51") (pinfunction "DQ9")) (node (ref "U14") (pin "51") (pinfunction "DQ9")) @@ -3971,7 +3971,7 @@ (node (ref "U19") (pin "51") (pinfunction "DQ9")) (node (ref "U22") (pin "34") (pinfunction "P34")) (node (ref "U4") (pin "17") (pinfunction "B1"))) - (net (code "151") (name "/TVRAM10") + (net (code "163") (name "/TVRAM10") (node (ref "U12") (pin "53") (pinfunction "DQ10")) (node (ref "U13") (pin "53") (pinfunction "DQ10")) (node (ref "U14") (pin "53") (pinfunction "DQ10")) @@ -3982,7 +3982,7 @@ (node (ref "U19") (pin "53") (pinfunction "DQ10")) (node (ref "U22") (pin "35") (pinfunction "P35")) (node (ref "U4") (pin "16") (pinfunction "B2"))) - (net (code "152") (name "/TVRAM11") + (net (code "164") (name "/TVRAM11") (node (ref "U12") (pin "55") (pinfunction "DQ11")) (node (ref "U13") (pin "55") (pinfunction "DQ11")) (node (ref "U14") (pin "55") (pinfunction "DQ11")) @@ -3993,7 +3993,7 @@ (node (ref "U19") (pin "55") (pinfunction "DQ11")) (node (ref "U22") (pin "36") (pinfunction "P36/INIT")) (node (ref "U4") (pin "15") (pinfunction "B3"))) - (net (code "153") (name "/TVRAM12") + (net (code "165") (name "/TVRAM12") (node (ref "U12") (pin "57") (pinfunction "DQ12")) (node (ref "U13") (pin "57") (pinfunction "DQ12")) (node (ref "U14") (pin "57") (pinfunction "DQ12")) @@ -4004,7 +4004,7 @@ (node (ref "U19") (pin "57") (pinfunction "DQ12")) (node (ref "U22") (pin "39") (pinfunction "P39")) (node (ref "U4") (pin "14") (pinfunction "B4"))) - (net (code "154") (name "/TVRAM13") + (net (code "166") (name "/TVRAM13") (node (ref "U12") (pin "61") (pinfunction "DQ13")) (node (ref "U13") (pin "61") (pinfunction "DQ13")) (node (ref "U14") (pin "61") (pinfunction "DQ13")) @@ -4015,7 +4015,7 @@ (node (ref "U19") (pin "61") (pinfunction "DQ13")) (node (ref "U22") (pin "40") (pinfunction "P40")) (node (ref "U4") (pin "13") (pinfunction "B5"))) - (net (code "155") (name "/TVRAM14") + (net (code "167") (name "/TVRAM14") (node (ref "U12") (pin "63") (pinfunction "DQ14")) (node (ref "U13") (pin "63") (pinfunction "DQ14")) (node (ref "U14") (pin "63") (pinfunction "DQ14")) @@ -4026,7 +4026,7 @@ (node (ref "U19") (pin "63") (pinfunction "DQ14")) (node (ref "U22") (pin "41") (pinfunction "P41")) (node (ref "U4") (pin "12") (pinfunction "B6"))) - (net (code "156") (name "/TVRAM15") + (net (code "168") (name "/TVRAM15") (node (ref "U12") (pin "65") (pinfunction "DQ15")) (node (ref "U13") (pin "65") (pinfunction "DQ15")) (node (ref "U14") (pin "65") (pinfunction "DQ15")) @@ -4037,7 +4037,7 @@ (node (ref "U19") (pin "65") (pinfunction "DQ15")) (node (ref "U22") (pin "42") (pinfunction "P42")) (node (ref "U4") (pin "11") (pinfunction "B7"))) - (net (code "157") (name "/TVRAM16") + (net (code "169") (name "/TVRAM16") (node (ref "U12") (pin "3") (pinfunction "DQ16")) (node (ref "U13") (pin "3") (pinfunction "DQ16")) (node (ref "U14") (pin "3") (pinfunction "DQ16")) @@ -4048,7 +4048,7 @@ (node (ref "U19") (pin "3") (pinfunction "DQ16")) (node (ref "U22") (pin "43") (pinfunction "P43")) (node (ref "U5") (pin "18") (pinfunction "B0"))) - (net (code "158") (name "/TVRAM17") + (net (code "170") (name "/TVRAM17") (node (ref "U12") (pin "5") (pinfunction "DQ17")) (node (ref "U13") (pin "5") (pinfunction "DQ17")) (node (ref "U14") (pin "5") (pinfunction "DQ17")) @@ -4059,7 +4059,7 @@ (node (ref "U19") (pin "5") (pinfunction "DQ17")) (node (ref "U22") (pin "44") (pinfunction "P44")) (node (ref "U5") (pin "17") (pinfunction "B1"))) - (net (code "159") (name "/TVRAM18") + (net (code "171") (name "/TVRAM18") (node (ref "U12") (pin "7") (pinfunction "DQ18")) (node (ref "U13") (pin "7") (pinfunction "DQ18")) (node (ref "U14") (pin "7") (pinfunction "DQ18")) @@ -4070,7 +4070,7 @@ (node (ref "U19") (pin "7") (pinfunction "DQ18")) (node (ref "U22") (pin "45") (pinfunction "P45")) (node (ref "U5") (pin "16") (pinfunction "B2"))) - (net (code "160") (name "/TVRAM19") + (net (code "172") (name "/TVRAM19") (node (ref "U12") (pin "9") (pinfunction "DQ19")) (node (ref "U13") (pin "9") (pinfunction "DQ19")) (node (ref "U14") (pin "9") (pinfunction "DQ19")) @@ -4081,7 +4081,7 @@ (node (ref "U19") (pin "9") (pinfunction "DQ19")) (node (ref "U22") (pin "46") (pinfunction "P46")) (node (ref "U5") (pin "15") (pinfunction "B3"))) - (net (code "161") (name "/TVRAM20") + (net (code "173") (name "/TVRAM20") (node (ref "U12") (pin "21") (pinfunction "DQ20")) (node (ref "U13") (pin "21") (pinfunction "DQ20")) (node (ref "U14") (pin "21") (pinfunction "DQ20")) @@ -4092,7 +4092,7 @@ (node (ref "U19") (pin "21") (pinfunction "DQ20")) (node (ref "U22") (pin "47") (pinfunction "P47")) (node (ref "U5") (pin "14") (pinfunction "B4"))) - (net (code "162") (name "/TVRAM21") + (net (code "174") (name "/TVRAM21") (node (ref "U12") (pin "23") (pinfunction "DQ21")) (node (ref "U13") (pin "23") (pinfunction "DQ21")) (node (ref "U14") (pin "23") (pinfunction "DQ21")) @@ -4103,7 +4103,7 @@ (node (ref "U19") (pin "23") (pinfunction "DQ21")) (node (ref "U22") (pin "48") (pinfunction "SGCK3")) (node (ref "U5") (pin "13") (pinfunction "B5"))) - (net (code "163") (name "/TVRAM22") + (net (code "175") (name "/TVRAM22") (node (ref "U12") (pin "25") (pinfunction "DQ22")) (node (ref "U13") (pin "25") (pinfunction "DQ22")) (node (ref "U14") (pin "25") (pinfunction "DQ22")) @@ -4114,7 +4114,7 @@ (node (ref "U19") (pin "25") (pinfunction "DQ22")) (node (ref "U22") (pin "53") (pinfunction "P53")) (node (ref "U5") (pin "12") (pinfunction "B6"))) - (net (code "164") (name "/TVRAM23") + (net (code "176") (name "/TVRAM23") (node (ref "U12") (pin "27") (pinfunction "DQ23")) (node (ref "U13") (pin "27") (pinfunction "DQ23")) (node (ref "U14") (pin "27") (pinfunction "DQ23")) @@ -4125,7 +4125,7 @@ (node (ref "U19") (pin "27") (pinfunction "DQ23")) (node (ref "U22") (pin "54") (pinfunction "PGCK3")) (node (ref "U5") (pin "11") (pinfunction "B7"))) - (net (code "165") (name "/TVRAM24") + (net (code "177") (name "/TVRAM24") (node (ref "U12") (pin "50") (pinfunction "DQ24")) (node (ref "U13") (pin "50") (pinfunction "DQ24")) (node (ref "U14") (pin "50") (pinfunction "DQ24")) @@ -4136,7 +4136,7 @@ (node (ref "U19") (pin "50") (pinfunction "DQ24")) (node (ref "U22") (pin "55") (pinfunction "P55")) (node (ref "U6") (pin "18") (pinfunction "B0"))) - (net (code "166") (name "/TVRAM25") + (net (code "178") (name "/TVRAM25") (node (ref "U12") (pin "52") (pinfunction "DQ25")) (node (ref "U13") (pin "52") (pinfunction "DQ25")) (node (ref "U14") (pin "52") (pinfunction "DQ25")) @@ -4147,7 +4147,7 @@ (node (ref "U19") (pin "52") (pinfunction "DQ25")) (node (ref "U22") (pin "56") (pinfunction "P56")) (node (ref "U6") (pin "17") (pinfunction "B1"))) - (net (code "167") (name "/TVRAM26") + (net (code "179") (name "/TVRAM26") (node (ref "U12") (pin "54") (pinfunction "DQ26")) (node (ref "U13") (pin "54") (pinfunction "DQ26")) (node (ref "U14") (pin "54") (pinfunction "DQ26")) @@ -4158,7 +4158,7 @@ (node (ref "U19") (pin "54") (pinfunction "DQ26")) (node (ref "U22") (pin "57") (pinfunction "P57")) (node (ref "U6") (pin "16") (pinfunction "B2"))) - (net (code "168") (name "/TVRAM27") + (net (code "180") (name "/TVRAM27") (node (ref "U12") (pin "56") (pinfunction "DQ27")) (node (ref "U13") (pin "56") (pinfunction "DQ27")) (node (ref "U14") (pin "56") (pinfunction "DQ27")) @@ -4169,7 +4169,7 @@ (node (ref "U19") (pin "56") (pinfunction "DQ27")) (node (ref "U22") (pin "58") (pinfunction "P58")) (node (ref "U6") (pin "15") (pinfunction "B3"))) - (net (code "169") (name "/TVRAM28") + (net (code "181") (name "/TVRAM28") (node (ref "U12") (pin "58") (pinfunction "DQ28")) (node (ref "U13") (pin "58") (pinfunction "DQ28")) (node (ref "U14") (pin "58") (pinfunction "DQ28")) @@ -4180,7 +4180,7 @@ (node (ref "U19") (pin "58") (pinfunction "DQ28")) (node (ref "U22") (pin "59") (pinfunction "P59")) (node (ref "U6") (pin "14") (pinfunction "B4"))) - (net (code "170") (name "/TVRAM29") + (net (code "182") (name "/TVRAM29") (node (ref "U12") (pin "60") (pinfunction "DQ29")) (node (ref "U13") (pin "60") (pinfunction "DQ29")) (node (ref "U14") (pin "60") (pinfunction "DQ29")) @@ -4191,7 +4191,7 @@ (node (ref "U19") (pin "60") (pinfunction "DQ29")) (node (ref "U22") (pin "60") (pinfunction "P60")) (node (ref "U6") (pin "13") (pinfunction "B5"))) - (net (code "171") (name "/TVRAM30") + (net (code "183") (name "/TVRAM30") (node (ref "U12") (pin "62") (pinfunction "DQ30")) (node (ref "U13") (pin "62") (pinfunction "DQ30")) (node (ref "U14") (pin "62") (pinfunction "DQ30")) @@ -4202,7 +4202,7 @@ (node (ref "U19") (pin "62") (pinfunction "DQ30")) (node (ref "U22") (pin "61") (pinfunction "P61")) (node (ref "U6") (pin "12") (pinfunction "B6"))) - (net (code "172") (name "/TVRAM31") + (net (code "184") (name "/TVRAM31") (node (ref "U12") (pin "64") (pinfunction "DQ31")) (node (ref "U13") (pin "64") (pinfunction "DQ31")) (node (ref "U14") (pin "64") (pinfunction "DQ31")) @@ -4213,10 +4213,10 @@ (node (ref "U19") (pin "64") (pinfunction "DQ31")) (node (ref "U22") (pin "62") (pinfunction "P62")) (node (ref "U6") (pin "11") (pinfunction "B7"))) - (net (code "173") (name "/VD_PAL-") + (net (code "187") (name "/VD_PAL-") (node (ref "U10") (pin "34") (pinfunction "VRESET")) (node (ref "U24") (pin "37") (pinfunction "SGCK2"))) - (net (code "174") (name "/WRAM-") + (net (code "188") (name "/WRAM-") (node (ref "U12") (pin "47") (pinfunction "R/W")) (node (ref "U13") (pin "47") (pinfunction "R/W")) (node (ref "U14") (pin "47") (pinfunction "R/W")) @@ -4226,391 +4226,391 @@ (node (ref "U18") (pin "47") (pinfunction "R/W")) (node (ref "U19") (pin "47") (pinfunction "R/W")) (node (ref "U24") (pin "63") (pinfunction "P63"))) - (net (code "175") (name "/WRCAD-") + (net (code "189") (name "/WRCAD-") (node (ref "U23") (pin "69") (pinfunction "P69")) (node (ref "U8") (pin "24") (pinfunction "WR"))) - (net (code "176") (name "/WRCDA-") + (net (code "190") (name "/WRCDA-") (node (ref "U23") (pin "73") (pinfunction "P73")) (node (ref "U9") (pin "23") (pinfunction "RD"))) - (net (code "177") (name "/WRFIFDO-") + (net (code "191") (name "/WRFIFDO-") (node (ref "RR5") (pin "8") (pinfunction "8")) (node (ref "U11") (pin "102") (pinfunction "WRFIFO#")) (node (ref "U24") (pin "18") (pinfunction "P18"))) - (net (code "178") (name "/WRFULL") + (net (code "192") (name "/WRFULL") (node (ref "U11") (pin "103") (pinfunction "WRFULL")) (node (ref "U24") (pin "17") (pinfunction "P17"))) - (net (code "179") (name "/WRITE_RAM") + (net (code "193") (name "/WRITE_RAM") (node (ref "U24") (pin "55") (pinfunction "P55")) (node (ref "U3") (pin "1") (pinfunction "A->B")) (node (ref "U4") (pin "1") (pinfunction "A->B")) (node (ref "U5") (pin "1") (pinfunction "A->B")) (node (ref "U6") (pin "1") (pinfunction "A->B"))) - (net (code "180") (name "/X_CLK") + (net (code "194") (name "/X_CLK") (node (ref "U22") (pin "74") (pinfunction "CCLK")) (node (ref "U23") (pin "86") (pinfunction "P86")) (node (ref "U24") (pin "119") (pinfunction "CCLK"))) - (net (code "181") (name "/X_DATA") + (net (code "195") (name "/X_DATA") (node (ref "U22") (pin "72") (pinfunction "DIN")) (node (ref "U24") (pin "118") (pinfunction "DOUT-SGI4"))) - (net (code "182") (name "/X_DONE") + (net (code "196") (name "/X_DONE") (node (ref "U22") (pin "50") (pinfunction "DONE")) (node (ref "U23") (pin "83") (pinfunction "P83")) (node (ref "U24") (pin "80") (pinfunction "DONE"))) - (net (code "183") (name "/X_IRQ") + (net (code "197") (name "/X_IRQ") (node (ref "RR5") (pin "4") (pinfunction "4")) (node (ref "U11") (pin "109") (pinfunction "EA8")) (node (ref "U24") (pin "11") (pinfunction "P11"))) - (net (code "184") (name "/X_PROG-") + (net (code "198") (name "/X_PROG-") (node (ref "U22") (pin "52") (pinfunction "PROG")) (node (ref "U23") (pin "84") (pinfunction "P84")) (node (ref "U24") (pin "82") (pinfunction "PROG"))) - (net (code "185") (name "/Y_OUT") + (net (code "199") (name "/Y_OUT") (node (ref "J4") (pin "9") (pinfunction "P9")) (node (ref "R40") (pin "2"))) - (net (code "186") (name "/buspci.sch/EA1") + (net (code "200") (name "/buspci.sch/EA1") (node (ref "RR2") (pin "6") (pinfunction "6")) (node (ref "U11") (pin "61") (pinfunction "EA1"))) - (net (code "187") (name "/buspci.sch/EA2") + (net (code "201") (name "/buspci.sch/EA2") (node (ref "RR3") (pin "8") (pinfunction "8")) (node (ref "U11") (pin "69") (pinfunction "EA2"))) - (net (code "188") (name "/buspci.sch/EA3") + (net (code "202") (name "/buspci.sch/EA3") (node (ref "RR3") (pin "6") (pinfunction "6")) (node (ref "U11") (pin "73") (pinfunction "EA3"))) - (net (code "189") (name "/buspci.sch/EA4") + (net (code "203") (name "/buspci.sch/EA4") (node (ref "RR3") (pin "2") (pinfunction "2")) (node (ref "U11") (pin "81") (pinfunction "EA4"))) - (net (code "190") (name "/buspci.sch/EA5") + (net (code "204") (name "/buspci.sch/EA5") (node (ref "RR4") (pin "4") (pinfunction "4")) (node (ref "U11") (pin "89") (pinfunction "EA5"))) - (net (code "191") (name "/buspci.sch/EA6") + (net (code "205") (name "/buspci.sch/EA6") (node (ref "RR4") (pin "2") (pinfunction "2")) (node (ref "U11") (pin "97") (pinfunction "EA6"))) - (net (code "192") (name "/buspci.sch/EA7") + (net (code "206") (name "/buspci.sch/EA7") (node (ref "RR5") (pin "9") (pinfunction "9")) (node (ref "U11") (pin "101") (pinfunction "EA7"))) - (net (code "193") (name "/buspci.sch/EA9") + (net (code "207") (name "/buspci.sch/EA9") (node (ref "RR5") (pin "3") (pinfunction "3")) (node (ref "U11") (pin "113") (pinfunction "EA9"))) - (net (code "194") (name "/buspci.sch/EA10") + (net (code "208") (name "/buspci.sch/EA10") (node (ref "RR6") (pin "9") (pinfunction "9")) (node (ref "U11") (pin "121") (pinfunction "EA10"))) - (net (code "195") (name "/buspci.sch/EA11") + (net (code "209") (name "/buspci.sch/EA11") (node (ref "RR6") (pin "7") (pinfunction "7")) (node (ref "U11") (pin "129") (pinfunction "EA11"))) - (net (code "196") (name "/buspci.sch/EA12") + (net (code "210") (name "/buspci.sch/EA12") (node (ref "RR6") (pin "5") (pinfunction "5")) (node (ref "U11") (pin "137") (pinfunction "EA12"))) - (net (code "197") (name "/buspci.sch/EA13") + (net (code "211") (name "/buspci.sch/EA13") (node (ref "RR6") (pin "4") (pinfunction "4")) (node (ref "U11") (pin "141") (pinfunction "EA13"))) - (net (code "198") (name "/buspci.sch/EA14") + (net (code "212") (name "/buspci.sch/EA14") (node (ref "RR4") (pin "8") (pinfunction "8")) (node (ref "U11") (pin "149") (pinfunction "EA14/FWE"))) - (net (code "199") (name "/buspci.sch/EA15") + (net (code "213") (name "/buspci.sch/EA15") (node (ref "RR4") (pin "6") (pinfunction "6")) (node (ref "U11") (pin "153") (pinfunction "EA15/FRF"))) - (net (code "200") (name "/buspci.sch/EQ0") + (net (code "214") (name "/buspci.sch/EQ0") (node (ref "RR1") (pin "2") (pinfunction "2")) (node (ref "U11") (pin "1") (pinfunction "EQ0"))) - (net (code "201") (name "/buspci.sch/EQ1") + (net (code "215") (name "/buspci.sch/EQ1") (node (ref "RR1") (pin "4") (pinfunction "4")) (node (ref "U11") (pin "9") (pinfunction "EQ1"))) - (net (code "202") (name "/buspci.sch/EQ2") + (net (code "216") (name "/buspci.sch/EQ2") (node (ref "RR1") (pin "6") (pinfunction "6")) (node (ref "U11") (pin "17") (pinfunction "EQ2"))) - (net (code "203") (name "/buspci.sch/EQ3") + (net (code "217") (name "/buspci.sch/EQ3") (node (ref "RR1") (pin "7") (pinfunction "7")) (node (ref "U11") (pin "21") (pinfunction "EQ3"))) - (net (code "204") (name "/buspci.sch/EQ4") + (net (code "218") (name "/buspci.sch/EQ4") (node (ref "RR1") (pin "9") (pinfunction "9")) (node (ref "U11") (pin "29") (pinfunction "EQ4/FWC#"))) - (net (code "205") (name "/buspci.sch/EQ5") + (net (code "219") (name "/buspci.sch/EQ5") (node (ref "RR2") (pin "4") (pinfunction "4")) (node (ref "U11") (pin "33") (pinfunction "EQ5/FRC#"))) - (net (code "206") (name "/buspci.sch/EQ6") + (net (code "220") (name "/buspci.sch/EQ6") (node (ref "RR2") (pin "2") (pinfunction "2")) (node (ref "U11") (pin "41") (pinfunction "EQ6/AMREN"))) - (net (code "207") (name "/buspci.sch/EQ7") + (net (code "221") (name "/buspci.sch/EQ7") (node (ref "RR2") (pin "9") (pinfunction "9")) (node (ref "U11") (pin "49") (pinfunction "EQ7/AMWEN"))) - (net (code "208") (name "/buspci.sch/P_AD0") + (net (code "222") (name "/buspci.sch/P_AD0") (node (ref "BUS1") (pin "A58") (pinfunction "AD[00]")) (node (ref "U11") (pin "56") (pinfunction "AD0"))) - (net (code "209") (name "/buspci.sch/P_AD1") + (net (code "223") (name "/buspci.sch/P_AD1") (node (ref "BUS1") (pin "B58") (pinfunction "AD[01]")) (node (ref "U11") (pin "55") (pinfunction "AD1"))) - (net (code "210") (name "/buspci.sch/P_AD2") + (net (code "224") (name "/buspci.sch/P_AD2") (node (ref "BUS1") (pin "A57") (pinfunction "AD[02]")) (node (ref "U11") (pin "54") (pinfunction "AD2"))) - (net (code "211") (name "/buspci.sch/P_AD3") + (net (code "225") (name "/buspci.sch/P_AD3") (node (ref "BUS1") (pin "B56") (pinfunction "AD[03]")) (node (ref "U11") (pin "52") (pinfunction "AD3"))) - (net (code "212") (name "/buspci.sch/P_AD4") + (net (code "226") (name "/buspci.sch/P_AD4") (node (ref "BUS1") (pin "A55") (pinfunction "AD[04]")) (node (ref "U11") (pin "48") (pinfunction "AD4"))) - (net (code "213") (name "/buspci.sch/P_AD5") + (net (code "227") (name "/buspci.sch/P_AD5") (node (ref "BUS1") (pin "B55") (pinfunction "AD[05]")) (node (ref "U11") (pin "47") (pinfunction "AD5"))) - (net (code "214") (name "/buspci.sch/P_AD6") + (net (code "228") (name "/buspci.sch/P_AD6") (node (ref "BUS1") (pin "A54") (pinfunction "AD[06]")) (node (ref "U11") (pin "46") (pinfunction "AD6"))) - (net (code "215") (name "/buspci.sch/P_AD7") + (net (code "229") (name "/buspci.sch/P_AD7") (node (ref "BUS1") (pin "B53") (pinfunction "AD[07]")) (node (ref "U11") (pin "44") (pinfunction "AD7"))) - (net (code "216") (name "/buspci.sch/P_AD8") + (net (code "230") (name "/buspci.sch/P_AD8") (node (ref "BUS1") (pin "B52") (pinfunction "AD[08]")) (node (ref "U11") (pin "42") (pinfunction "AD8"))) - (net (code "217") (name "/buspci.sch/P_AD9") + (net (code "231") (name "/buspci.sch/P_AD9") (node (ref "BUS1") (pin "A49") (pinfunction "AD[09]")) (node (ref "U11") (pin "40") (pinfunction "AD9"))) - (net (code "218") (name "/buspci.sch/P_AD10") + (net (code "232") (name "/buspci.sch/P_AD10") (node (ref "BUS1") (pin "B48") (pinfunction "AD[10]")) (node (ref "U11") (pin "39") (pinfunction "AD10"))) - (net (code "219") (name "/buspci.sch/P_AD11") + (net (code "233") (name "/buspci.sch/P_AD11") (node (ref "BUS1") (pin "A47") (pinfunction "AD[11]")) (node (ref "U11") (pin "38") (pinfunction "AD11"))) - (net (code "220") (name "/buspci.sch/P_AD12") + (net (code "234") (name "/buspci.sch/P_AD12") (node (ref "BUS1") (pin "B47") (pinfunction "AD[12]")) (node (ref "U11") (pin "36") (pinfunction "AD12"))) - (net (code "221") (name "/buspci.sch/P_AD13") + (net (code "235") (name "/buspci.sch/P_AD13") (node (ref "BUS1") (pin "A46") (pinfunction "AD[13]")) (node (ref "U11") (pin "35") (pinfunction "AD13"))) - (net (code "222") (name "/buspci.sch/P_AD14") + (net (code "236") (name "/buspci.sch/P_AD14") (node (ref "BUS1") (pin "B45") (pinfunction "AD[14]")) (node (ref "U11") (pin "34") (pinfunction "AD14"))) - (net (code "223") (name "/buspci.sch/P_AD15") + (net (code "237") (name "/buspci.sch/P_AD15") (node (ref "BUS1") (pin "A44") (pinfunction "AD[15]")) (node (ref "U11") (pin "32") (pinfunction "AD15"))) - (net (code "224") (name "/buspci.sch/P_AD16") + (net (code "238") (name "/buspci.sch/P_AD16") (node (ref "BUS1") (pin "A32") (pinfunction "AD[16]")) (node (ref "U11") (pin "14") (pinfunction "AD16"))) - (net (code "225") (name "/buspci.sch/P_AD17") + (net (code "239") (name "/buspci.sch/P_AD17") (node (ref "BUS1") (pin "B32") (pinfunction "AD[17]")) (node (ref "U11") (pin "12") (pinfunction "AD17"))) - (net (code "226") (name "/buspci.sch/P_AD18") + (net (code "240") (name "/buspci.sch/P_AD18") (node (ref "BUS1") (pin "A31") (pinfunction "AD[18]")) (node (ref "U11") (pin "8") (pinfunction "AD18"))) - (net (code "227") (name "/buspci.sch/P_AD19") + (net (code "241") (name "/buspci.sch/P_AD19") (node (ref "BUS1") (pin "B30") (pinfunction "AD[19]")) (node (ref "U11") (pin "7") (pinfunction "AD19"))) - (net (code "228") (name "/buspci.sch/P_AD20") + (net (code "242") (name "/buspci.sch/P_AD20") (node (ref "BUS1") (pin "A29") (pinfunction "AD[20]")) (node (ref "U11") (pin "6") (pinfunction "AD20"))) - (net (code "229") (name "/buspci.sch/P_AD21") + (net (code "243") (name "/buspci.sch/P_AD21") (node (ref "BUS1") (pin "B29") (pinfunction "AD[21]")) (node (ref "U11") (pin "4") (pinfunction "AD21"))) - (net (code "230") (name "/buspci.sch/P_AD22") + (net (code "244") (name "/buspci.sch/P_AD22") (node (ref "BUS1") (pin "A28") (pinfunction "AD[22]")) (node (ref "U11") (pin "3") (pinfunction "AD22"))) - (net (code "231") (name "/buspci.sch/P_AD23") + (net (code "245") (name "/buspci.sch/P_AD23") (node (ref "BUS1") (pin "B27") (pinfunction "AD[23]")) (node (ref "U11") (pin "2") (pinfunction "AD23"))) - (net (code "232") (name "/buspci.sch/P_AD24") + (net (code "246") (name "/buspci.sch/P_AD24") (node (ref "BUS1") (pin "A25") (pinfunction "AD[24]")) (node (ref "U11") (pin "158") (pinfunction "AD24"))) - (net (code "233") (name "/buspci.sch/P_AD25") + (net (code "247") (name "/buspci.sch/P_AD25") (node (ref "BUS1") (pin "B24") (pinfunction "AD[25]")) (node (ref "U11") (pin "156") (pinfunction "AD25"))) - (net (code "234") (name "/buspci.sch/P_AD26") + (net (code "248") (name "/buspci.sch/P_AD26") (node (ref "BUS1") (pin "A23") (pinfunction "AD[26]")) (node (ref "U11") (pin "155") (pinfunction "AD26"))) - (net (code "235") (name "/buspci.sch/P_AD27") + (net (code "249") (name "/buspci.sch/P_AD27") (node (ref "BUS1") (pin "B23") (pinfunction "AD[27]")) (node (ref "U11") (pin "154") (pinfunction "AD27"))) - (net (code "236") (name "/buspci.sch/P_AD28") + (net (code "250") (name "/buspci.sch/P_AD28") (node (ref "BUS1") (pin "A22") (pinfunction "AD[28]")) (node (ref "U11") (pin "152") (pinfunction "AD28"))) - (net (code "237") (name "/buspci.sch/P_AD29") + (net (code "251") (name "/buspci.sch/P_AD29") (node (ref "BUS1") (pin "B21") (pinfunction "AD[29]")) (node (ref "U11") (pin "148") (pinfunction "AD29"))) - (net (code "238") (name "/buspci.sch/P_AD30") + (net (code "252") (name "/buspci.sch/P_AD30") (node (ref "BUS1") (pin "A20") (pinfunction "AD[30]")) (node (ref "U11") (pin "147") (pinfunction "AD30"))) - (net (code "239") (name "/buspci.sch/P_AD31") + (net (code "253") (name "/buspci.sch/P_AD31") (node (ref "BUS1") (pin "B20") (pinfunction "AD[31]")) (node (ref "U11") (pin "146") (pinfunction "AD31"))) - (net (code "240") (name "/buspci.sch/P_CLK") + (net (code "254") (name "/buspci.sch/P_CLK") (node (ref "BUS1") (pin "B16") (pinfunction "CLK")) (node (ref "U11") (pin "142") (pinfunction "CLK"))) - (net (code "241") (name "/buspci.sch/P_C{slash}BE0#") + (net (code "255") (name "/buspci.sch/P_C{slash}BE0#") (node (ref "BUS1") (pin "A52") (pinfunction "C/BE#[0]")) (node (ref "U11") (pin "43") (pinfunction "C/BE0#"))) - (net (code "242") (name "/buspci.sch/P_C{slash}BE1#") + (net (code "256") (name "/buspci.sch/P_C{slash}BE1#") (node (ref "BUS1") (pin "B44") (pinfunction "C/BE#[1]")) (node (ref "U11") (pin "28") (pinfunction "C/BE1#"))) - (net (code "243") (name "/buspci.sch/P_C{slash}BE2#") + (net (code "257") (name "/buspci.sch/P_C{slash}BE2#") (node (ref "BUS1") (pin "B33") (pinfunction "C/BE#[2]")) (node (ref "U11") (pin "15") (pinfunction "C/BE2#"))) - (net (code "244") (name "/buspci.sch/P_C{slash}BE3#") + (net (code "258") (name "/buspci.sch/P_C{slash}BE3#") (node (ref "BUS1") (pin "B26") (pinfunction "C/BE#[3]")) (node (ref "U11") (pin "159") (pinfunction "C/BE3#"))) - (net (code "245") (name "/buspci.sch/P_DEVSEL#") + (net (code "259") (name "/buspci.sch/P_DEVSEL#") (node (ref "BUS1") (pin "B37") (pinfunction "DEVSEL#")) (node (ref "U11") (pin "20") (pinfunction "DEVSEL#"))) - (net (code "246") (name "/buspci.sch/P_FRAME#") + (net (code "260") (name "/buspci.sch/P_FRAME#") (node (ref "BUS1") (pin "A34") (pinfunction "FRAME#")) (node (ref "U11") (pin "16") (pinfunction "FRAME#"))) - (net (code "247") (name "/buspci.sch/P_GNT#") + (net (code "261") (name "/buspci.sch/P_GNT#") (node (ref "BUS1") (pin "A17") (pinfunction "GNT#")) (node (ref "U11") (pin "143") (pinfunction "GNT#"))) - (net (code "248") (name "/buspci.sch/P_IDSEL") + (net (code "262") (name "/buspci.sch/P_IDSEL") (node (ref "BUS1") (pin "A26") (pinfunction "IDSEL")) (node (ref "U11") (pin "160") (pinfunction "IDSEL"))) - (net (code "249") (name "/buspci.sch/P_INTA#") + (net (code "263") (name "/buspci.sch/P_INTA#") (node (ref "BUS1") (pin "A6") (pinfunction "INTA#")) (node (ref "U11") (pin "58") (pinfunction "INTA#"))) - (net (code "250") (name "/buspci.sch/P_IRDY#") + (net (code "264") (name "/buspci.sch/P_IRDY#") (node (ref "BUS1") (pin "B35") (pinfunction "IRDY#")) (node (ref "U11") (pin "18") (pinfunction "IRDY#"))) - (net (code "251") (name "/buspci.sch/P_LOCK#") + (net (code "265") (name "/buspci.sch/P_LOCK#") (node (ref "BUS1") (pin "B39") (pinfunction "LOCK#")) (node (ref "U11") (pin "23") (pinfunction "LOCK#"))) - (net (code "252") (name "/buspci.sch/P_PAR") + (net (code "266") (name "/buspci.sch/P_PAR") (node (ref "BUS1") (pin "A43") (pinfunction "PAR")) (node (ref "U11") (pin "27") (pinfunction "PAR"))) - (net (code "253") (name "/buspci.sch/P_PERR#") + (net (code "267") (name "/buspci.sch/P_PERR#") (node (ref "BUS1") (pin "B40") (pinfunction "PERR#")) (node (ref "U11") (pin "24") (pinfunction "PERR#"))) - (net (code "254") (name "/buspci.sch/P_REQ#") + (net (code "268") (name "/buspci.sch/P_REQ#") (node (ref "BUS1") (pin "B18") (pinfunction "REQ#")) (node (ref "U11") (pin "144") (pinfunction "REQ#"))) - (net (code "255") (name "/buspci.sch/P_RST#") + (net (code "269") (name "/buspci.sch/P_RST#") (node (ref "BUS1") (pin "A15") (pinfunction "RST#")) (node (ref "U11") (pin "139") (pinfunction "RST#"))) - (net (code "256") (name "/buspci.sch/P_SERR#") + (net (code "270") (name "/buspci.sch/P_SERR#") (node (ref "BUS1") (pin "B42") (pinfunction "SERR#")) (node (ref "U11") (pin "26") (pinfunction "SERR#"))) - (net (code "257") (name "/buspci.sch/P_STOP#") + (net (code "271") (name "/buspci.sch/P_STOP#") (node (ref "BUS1") (pin "A38") (pinfunction "STOP#")) (node (ref "U11") (pin "22") (pinfunction "STOP#"))) - (net (code "258") (name "/buspci.sch/P_TRDY#") + (net (code "272") (name "/buspci.sch/P_TRDY#") (node (ref "BUS1") (pin "A36") (pinfunction "TRDY#")) (node (ref "U11") (pin "19") (pinfunction "TRDY#"))) - (net (code "259") (name "/graphic/14MHZOUT") + (net (code "273") (name "/graphic/14MHZOUT") (node (ref "U24") (pin "95") (pinfunction "P95")) (node (ref "U7") (pin "6") (pinfunction "CKKOUT"))) - (net (code "260") (name "/graphic/CCLK") + (net (code "274") (name "/graphic/CCLK") (node (ref "P5") (pin "2")) (node (ref "U21") (pin "2") (pinfunction "CLK")) (node (ref "U23") (pin "77") (pinfunction "CCLK"))) - (net (code "261") (name "/graphic/CLK10MHz") + (net (code "275") (name "/graphic/CLK10MHz") (node (ref "R21") (pin "2")) (node (ref "U23") (pin "57") (pinfunction "PGCK3")) (node (ref "U24") (pin "2") (pinfunction "PGCK1"))) - (net (code "262") (name "/graphic/CSIO-") + (net (code "276") (name "/graphic/CSIO-") (node (ref "U23") (pin "61") (pinfunction "P61")) (node (ref "U24") (pin "159") (pinfunction "SGCK1"))) - (net (code "263") (name "/graphic/DIN") + (net (code "277") (name "/graphic/DIN") (node (ref "P5") (pin "3")) (node (ref "U21") (pin "1") (pinfunction "DATA")) (node (ref "U23") (pin "75") (pinfunction "DIN/D0"))) - (net (code "264") (name "/graphic/DONE") + (net (code "278") (name "/graphic/DONE") (node (ref "P5") (pin "4")) (node (ref "U23") (pin "53") (pinfunction "DONE"))) - (net (code "265") (name "/graphic/HDOUT") + (net (code "279") (name "/graphic/HDOUT") (node (ref "U24") (pin "7") (pinfunction "TCK")) (node (ref "U7") (pin "1") (pinfunction "FSIGIN"))) - (net (code "266") (name "/graphic/HDREFOUT") + (net (code "280") (name "/graphic/HDREFOUT") (node (ref "U24") (pin "6") (pinfunction "TDI")) (node (ref "U7") (pin "2") (pinfunction "FREFIN"))) - (net (code "267") (name "/graphic/IA0") + (net (code "281") (name "/graphic/IA0") (node (ref "U2") (pin "6") (pinfunction "A0")) (node (ref "U24") (pin "94") (pinfunction "P93"))) - (net (code "268") (name "/graphic/IA1") + (net (code "282") (name "/graphic/IA1") (node (ref "U2") (pin "7") (pinfunction "A1")) (node (ref "U24") (pin "92") (pinfunction "P92"))) - (net (code "269") (name "/graphic/IA2") + (net (code "283") (name "/graphic/IA2") (node (ref "U2") (pin "8") (pinfunction "A2")) (node (ref "U24") (pin "88") (pinfunction "P88"))) - (net (code "270") (name "/graphic/IA3") + (net (code "284") (name "/graphic/IA3") (node (ref "U2") (pin "9") (pinfunction "A3")) (node (ref "U24") (pin "87") (pinfunction "P87"))) - (net (code "271") (name "/graphic/IA4") + (net (code "285") (name "/graphic/IA4") (node (ref "U2") (pin "11") (pinfunction "A4")) (node (ref "U24") (pin "86") (pinfunction "P86"))) - (net (code "272") (name "/graphic/IA5") + (net (code "286") (name "/graphic/IA5") (node (ref "U2") (pin "12") (pinfunction "A5")) (node (ref "U24") (pin "85") (pinfunction "P85"))) - (net (code "273") (name "/graphic/IA6") + (net (code "287") (name "/graphic/IA6") (node (ref "U2") (pin "13") (pinfunction "A6")) (node (ref "U24") (pin "83") (pinfunction "P83"))) - (net (code "274") (name "/graphic/IA7") + (net (code "288") (name "/graphic/IA7") (node (ref "U2") (pin "14") (pinfunction "A7")) (node (ref "U24") (pin "78") (pinfunction "SGCK3"))) - (net (code "275") (name "/graphic/IA8") + (net (code "289") (name "/graphic/IA8") (node (ref "U2") (pin "15") (pinfunction "A8")) (node (ref "U24") (pin "93") (pinfunction "P93"))) - (net (code "276") (name "/graphic/IA9") + (net (code "290") (name "/graphic/IA9") (node (ref "U2") (pin "5") (pinfunction "A9")) (node (ref "U24") (pin "96") (pinfunction "P96"))) - (net (code "277") (name "/graphic/ICAS-") + (net (code "291") (name "/graphic/ICAS-") (node (ref "U2") (pin "17") (pinfunction "CAS")) (node (ref "U24") (pin "104") (pinfunction "P104"))) - (net (code "278") (name "/graphic/ID0") + (net (code "292") (name "/graphic/ID0") (node (ref "U2") (pin "1") (pinfunction "D0")) (node (ref "U24") (pin "102") (pinfunction "P102"))) - (net (code "279") (name "/graphic/ID1") + (net (code "293") (name "/graphic/ID1") (node (ref "U2") (pin "2") (pinfunction "D1")) (node (ref "U24") (pin "99") (pinfunction "P90"))) - (net (code "280") (name "/graphic/ID2") + (net (code "294") (name "/graphic/ID2") (node (ref "U2") (pin "18") (pinfunction "D2")) (node (ref "U24") (pin "105") (pinfunction "P105"))) - (net (code "281") (name "/graphic/ID3") + (net (code "295") (name "/graphic/ID3") (node (ref "U2") (pin "19") (pinfunction "D3")) (node (ref "U24") (pin "106") (pinfunction "P106"))) - (net (code "282") (name "/graphic/IOE-") + (net (code "296") (name "/graphic/IOE-") (node (ref "U2") (pin "16") (pinfunction "OE")) (node (ref "U24") (pin "103") (pinfunction "P103"))) - (net (code "283") (name "/graphic/IRAS-") + (net (code "297") (name "/graphic/IRAS-") (node (ref "U2") (pin "4") (pinfunction "RAS")) (node (ref "U24") (pin "97") (pinfunction "P97"))) - (net (code "284") (name "/graphic/IWR-") + (net (code "298") (name "/graphic/IWR-") (node (ref "U2") (pin "3") (pinfunction "WR")) (node (ref "U24") (pin "98") (pinfunction "P98"))) - (net (code "285") (name "/graphic/LED") + (net (code "299") (name "/graphic/LED") (node (ref "D6") (pin "2") (pinfunction "K")) (node (ref "U23") (pin "81") (pinfunction "P81"))) - (net (code "286") (name "/graphic/PROG*") + (net (code "300") (name "/graphic/PROG*") (node (ref "P5") (pin "5")) (node (ref "U21") (pin "3") (pinfunction "RAZ/OE")) (node (ref "U21") (pin "4") (pinfunction "CE")) (node (ref "U23") (pin "55") (pinfunction "PROG"))) - (net (code "287") (name "/graphic/RESERV1") + (net (code "301") (name "/graphic/RESERV1") (node (ref "U23") (pin "59") (pinfunction "P59")) (node (ref "U24") (pin "44") (pinfunction "HDC"))) - (net (code "288") (name "/graphic/VOSC") + (net (code "302") (name "/graphic/VOSC") (node (ref "C23") (pin "1")) (node (ref "C63") (pin "1")) (node (ref "R1") (pin "1")) (node (ref "U7") (pin "4") (pinfunction "FS0")) (node (ref "U7") (pin "5") (pinfunction "OE")) (node (ref "U7") (pin "7") (pinfunction "VCC"))) - (net (code "289") (name "/graphic/XTAL_I") + (net (code "303") (name "/graphic/XTAL_I") (node (ref "C50") (pin "1")) (node (ref "R26") (pin "1")) (node (ref "U23") (pin "56") (pinfunction "P56")) (node (ref "X1") (pin "2") (pinfunction "2"))) - (net (code "290") (name "/graphic/X_DIN") + (net (code "304") (name "/graphic/X_DIN") (node (ref "U23") (pin "85") (pinfunction "P85")) (node (ref "U24") (pin "117") (pinfunction "DIN"))) - (net (code "291") (name "/modul/CHROM") + (net (code "305") (name "/modul/CHROM") (node (ref "R16") (pin "2")) (node (ref "U20") (pin "14") (pinfunction "C/OUT"))) - (net (code "292") (name "/modul/CVBS") + (net (code "306") (name "/modul/CVBS") (node (ref "R18") (pin "2")) (node (ref "U20") (pin "16") (pinfunction "CVBS"))) - (net (code "293") (name "/modul/CVBSOUT") + (net (code "307") (name "/modul/CVBSOUT") (node (ref "P8") (pin "1") (pinfunction "In")) (node (ref "R41") (pin "1"))) - (net (code "294") (name "/modul/LUM") + (net (code "308") (name "/modul/LUM") (node (ref "R17") (pin "2")) (node (ref "U20") (pin "19") (pinfunction "Y/OUT"))) - (net (code "295") (name "/pal-ntsc.sch/C-VIDEO") + (net (code "309") (name "/pal-ntsc.sch/C-VIDEO") (node (ref "D3") (pin "2") (pinfunction "K")) (node (ref "D4") (pin "1") (pinfunction "A")) (node (ref "R2") (pin "1")) (node (ref "U10") (pin "125") (pinfunction "VID0_C"))) - (net (code "296") (name "/pal-ntsc.sch/VAF") + (net (code "310") (name "/pal-ntsc.sch/VAF") (node (ref "C12") (pin "1")) (node (ref "C13") (pin "1")) (node (ref "C14") (pin "1")) @@ -4642,26 +4642,26 @@ (node (ref "U10") (pin "80") (pinfunction "VAA")) (node (ref "U10") (pin "81") (pinfunction "VAA")) (node (ref "U10") (pin "82") (pinfunction "VAA"))) - (net (code "297") (name "/pal-ntsc.sch/Y-VIDEO") + (net (code "311") (name "/pal-ntsc.sch/Y-VIDEO") (node (ref "D1") (pin "2") (pinfunction "K")) (node (ref "D2") (pin "1") (pinfunction "A")) (node (ref "R3") (pin "1")) (node (ref "U10") (pin "156") (pinfunction "VID0_Y"))) - (net (code "298") (name "/pal-ntsc.sch/Y_SYNC") + (net (code "312") (name "/pal-ntsc.sch/Y_SYNC") (node (ref "R20") (pin "2")) (node (ref "R35") (pin "2")) (node (ref "U10") (pin "6") (pinfunction "OUT_Y"))) - (net (code "299") (name "/{slash}PCRD") + (net (code "313") (name "/{slash}PCRD") (node (ref "RR3") (pin "7") (pinfunction "7")) (node (ref "U11") (pin "72") (pinfunction "RD#")) (node (ref "U23") (pin "46") (pinfunction "P46")) (node (ref "U24") (pin "133") (pinfunction "P133"))) - (net (code "300") (name "/{slash}PCWR") + (net (code "314") (name "/{slash}PCWR") (node (ref "RR3") (pin "5") (pinfunction "5")) (node (ref "U11") (pin "74") (pinfunction "WR#")) (node (ref "U23") (pin "47") (pinfunction "P47")) (node (ref "U24") (pin "132") (pinfunction "P132"))) - (net (code "301") (name "GND") + (net (code "315") (name "GND") (node (ref "BUS1") (pin "A18") (pinfunction "GND")) (node (ref "BUS1") (pin "A24") (pinfunction "GND")) (node (ref "BUS1") (pin "A30") (pinfunction "GND")) @@ -4899,479 +4899,479 @@ (node (ref "W3") (pin "1") (pinfunction "1")) (node (ref "W4") (pin "1") (pinfunction "1")) (node (ref "W5") (pin "1") (pinfunction "1"))) - (net (code "302") (name "Net-(BUS1-PadA4)") + (net (code "316") (name "Net-(BUS1-PadA4)") (node (ref "BUS1") (pin "A4") (pinfunction "TDI")) (node (ref "BUS1") (pin "B4") (pinfunction "TDO"))) - (net (code "303") (name "Net-(BUS1-PadB9)") + (net (code "317") (name "Net-(BUS1-PadB9)") (node (ref "BUS1") (pin "B9") (pinfunction "PRSNT1#")) (node (ref "W5") (pin "2") (pinfunction "2"))) - (net (code "304") (name "Net-(BUS1-PadB11)") + (net (code "318") (name "Net-(BUS1-PadB11)") (node (ref "BUS1") (pin "B11") (pinfunction "PRSNT2#")) (node (ref "W4") (pin "2") (pinfunction "2"))) - (net (code "305") (name "Net-(C1-Pad1)") + (net (code "319") (name "Net-(C1-Pad1)") (node (ref "C1") (pin "1")) (node (ref "C47") (pin "1")) (node (ref "R35") (pin "1"))) - (net (code "306") (name "Net-(C1-Pad2)") + (net (code "320") (name "Net-(C1-Pad2)") (node (ref "C1") (pin "2")) (node (ref "R14") (pin "1")) (node (ref "U10") (pin "140") (pinfunction "SYNC_DET"))) - (net (code "307") (name "Net-(C3-Pad1)") + (net (code "321") (name "Net-(C3-Pad1)") (node (ref "C3") (pin "1")) (node (ref "R3") (pin "2"))) - (net (code "308") (name "Net-(C4-Pad1)") + (net (code "322") (name "Net-(C4-Pad1)") (node (ref "C4") (pin "1")) (node (ref "R2") (pin "2"))) - (net (code "309") (name "Net-(C5-Pad1)") + (net (code "323") (name "Net-(C5-Pad1)") (node (ref "C5") (pin "1")) (node (ref "U10") (pin "117") (pinfunction "VIN_C"))) - (net (code "310") (name "Net-(C5-Pad2)") + (net (code "324") (name "Net-(C5-Pad2)") (node (ref "C5") (pin "2")) (node (ref "R19") (pin "1"))) - (net (code "311") (name "Net-(C6-Pad1)") + (net (code "325") (name "Net-(C6-Pad1)") (node (ref "C6") (pin "1")) (node (ref "R12") (pin "1")) (node (ref "U10") (pin "113") (pinfunction "REFOUT")) (node (ref "U10") (pin "137") (pinfunction "CREF+")) (node (ref "U10") (pin "144") (pinfunction "YREF+"))) - (net (code "312") (name "Net-(C7-Pad1)") + (net (code "326") (name "Net-(C7-Pad1)") (node (ref "C7") (pin "1")) (node (ref "R27") (pin "2")) (node (ref "U10") (pin "114") (pinfunction "CLEVEL"))) - (net (code "313") (name "Net-(C8-Pad1)") + (net (code "327") (name "Net-(C8-Pad1)") (node (ref "C8") (pin "1")) (node (ref "U10") (pin "4") (pinfunction "VIN_Y/COMP."))) - (net (code "314") (name "Net-(C8-Pad2)") + (net (code "328") (name "Net-(C8-Pad2)") (node (ref "C8") (pin "2")) (node (ref "R20") (pin "1"))) - (net (code "315") (name "Net-(C16-Pad1)") + (net (code "329") (name "Net-(C16-Pad1)") (node (ref "C16") (pin "1")) (node (ref "U10") (pin "110") (pinfunction "N/C"))) - (net (code "316") (name "Net-(C32-Pad2)") + (net (code "330") (name "Net-(C32-Pad2)") (node (ref "C32") (pin "2")) (node (ref "U9") (pin "43") (pinfunction "VREF")) (node (ref "U9") (pin "44") (pinfunction "VREFOUT"))) - (net (code "317") (name "Net-(C34-Pad2)") + (net (code "331") (name "Net-(C34-Pad2)") (node (ref "C34") (pin "2")) (node (ref "C42") (pin "2")) (node (ref "R8") (pin "1")) (node (ref "U9") (pin "40") (pinfunction "IREF"))) - (net (code "318") (name "Net-(C35-Pad2)") + (net (code "332") (name "Net-(C35-Pad2)") (node (ref "C35") (pin "2")) (node (ref "U9") (pin "41") (pinfunction "COMP")) (node (ref "U9") (pin "42") (pinfunction "OPA"))) - (net (code "319") (name "Net-(C36-Pad1)") + (net (code "333") (name "Net-(C36-Pad1)") (node (ref "C36") (pin "1")) (node (ref "R15") (pin "2")) (node (ref "U8") (pin "7") (pinfunction "CEXT2"))) - (net (code "320") (name "Net-(C36-Pad2)") + (net (code "334") (name "Net-(C36-Pad2)") (node (ref "C36") (pin "2")) (node (ref "C37") (pin "2")) (node (ref "R36") (pin "1"))) - (net (code "321") (name "Net-(C39-Pad1)") + (net (code "335") (name "Net-(C39-Pad1)") (node (ref "C39") (pin "1")) (node (ref "U8") (pin "83") (pinfunction "RVID0"))) - (net (code "322") (name "Net-(C39-Pad2)") + (net (code "336") (name "Net-(C39-Pad2)") (node (ref "C39") (pin "2")) (node (ref "R24") (pin "2"))) - (net (code "323") (name "Net-(C40-Pad1)") + (net (code "337") (name "Net-(C40-Pad1)") (node (ref "C40") (pin "1")) (node (ref "U8") (pin "79") (pinfunction "GVID0"))) - (net (code "324") (name "Net-(C40-Pad2)") + (net (code "338") (name "Net-(C40-Pad2)") (node (ref "C40") (pin "2")) (node (ref "R23") (pin "2"))) - (net (code "325") (name "Net-(C41-Pad1)") + (net (code "339") (name "Net-(C41-Pad1)") (node (ref "C41") (pin "1")) (node (ref "U8") (pin "75") (pinfunction "BVID0"))) - (net (code "326") (name "Net-(C41-Pad2)") + (net (code "340") (name "Net-(C41-Pad2)") (node (ref "C41") (pin "2")) (node (ref "R22") (pin "2"))) - (net (code "327") (name "Net-(C43-Pad1)") + (net (code "341") (name "Net-(C43-Pad1)") (node (ref "C43") (pin "1")) (node (ref "U20") (pin "12") (pinfunction "VOFF"))) - (net (code "328") (name "Net-(C44-Pad1)") + (net (code "342") (name "Net-(C44-Pad1)") (node (ref "C44") (pin "1")) (node (ref "U20") (pin "6") (pinfunction "UOFF"))) - (net (code "329") (name "Net-(C45-Pad1)") + (net (code "343") (name "Net-(C45-Pad1)") (node (ref "C45") (pin "1")) (node (ref "U20") (pin "15") (pinfunction "FLT"))) - (net (code "330") (name "Net-(C46-Pad1)") + (net (code "344") (name "Net-(C46-Pad1)") (node (ref "C46") (pin "1")) (node (ref "C53") (pin "1")) (node (ref "L1") (pin "2") (pinfunction "2"))) - (net (code "331") (name "Net-(C48-Pad2)") + (net (code "345") (name "Net-(C48-Pad2)") (node (ref "C48") (pin "2")) (node (ref "C64") (pin "1")) (node (ref "R11") (pin "2")) (node (ref "U20") (pin "13") (pinfunction "VREF"))) - (net (code "332") (name "Net-(C49-Pad1)") + (net (code "346") (name "Net-(C49-Pad1)") (node (ref "C49") (pin "1")) (node (ref "R21") (pin "1")) (node (ref "R26") (pin "2")) (node (ref "X1") (pin "1") (pinfunction "1"))) - (net (code "333") (name "Net-(C54-Pad1)") + (net (code "347") (name "Net-(C54-Pad1)") (node (ref "C54") (pin "1")) (node (ref "L2") (pin "2") (pinfunction "2")) (node (ref "U20") (pin "8") (pinfunction "VCC"))) - (net (code "334") (name "Net-(C58-Pad1)") + (net (code "348") (name "Net-(C58-Pad1)") (node (ref "C58") (pin "1")) (node (ref "U20") (pin "11") (pinfunction "B"))) - (net (code "335") (name "Net-(C59-Pad1)") + (net (code "349") (name "Net-(C59-Pad1)") (node (ref "C59") (pin "1")) (node (ref "U20") (pin "9") (pinfunction "G"))) - (net (code "336") (name "Net-(C60-Pad1)") + (net (code "350") (name "Net-(C60-Pad1)") (node (ref "C60") (pin "1")) (node (ref "U20") (pin "7") (pinfunction "R"))) - (net (code "337") (name "Net-(C61-Pad1)") + (net (code "351") (name "Net-(C61-Pad1)") (node (ref "C61") (pin "1")) (node (ref "R30") (pin "1")) (node (ref "R31") (pin "2"))) - (net (code "338") (name "Net-(C61-Pad2)") + (net (code "352") (name "Net-(C61-Pad2)") (node (ref "C61") (pin "2")) (node (ref "U20") (pin "24") (pinfunction "CS"))) - (net (code "339") (name "Net-(C65-Pad2)") + (net (code "353") (name "Net-(C65-Pad2)") (node (ref "C65") (pin "2")) (node (ref "R25") (pin "2")) (node (ref "U10") (pin "109") (pinfunction "XTAL1_OUT")) (node (ref "X2") (pin "1") (pinfunction "1"))) - (net (code "340") (name "Net-(C66-Pad2)") + (net (code "354") (name "Net-(C66-Pad2)") (node (ref "C66") (pin "2")) (node (ref "R25") (pin "1")) (node (ref "U10") (pin "108") (pinfunction "XTAL1_IN")) (node (ref "X2") (pin "2") (pinfunction "2"))) - (net (code "341") (name "Net-(CV1-Pad1)") + (net (code "355") (name "Net-(CV1-Pad1)") (node (ref "CV1") (pin "1")) (node (ref "X3") (pin "1") (pinfunction "1"))) - (net (code "342") (name "Net-(D6-Pad1)") + (net (code "356") (name "Net-(D6-Pad1)") (node (ref "D6") (pin "1") (pinfunction "A")) (node (ref "R13") (pin "2"))) - (net (code "343") (name "Net-(L1-Pad1)") + (net (code "357") (name "Net-(L1-Pad1)") (node (ref "L1") (pin "1") (pinfunction "1")) (node (ref "U20") (pin "18") (pinfunction "NOTCH"))) - (net (code "344") (name "Net-(L6-Pad1)") + (net (code "358") (name "Net-(L6-Pad1)") (node (ref "L6") (pin "1") (pinfunction "1")) (node (ref "R10") (pin "1"))) - (net (code "345") (name "Net-(L6-Pad2)") + (net (code "359") (name "Net-(L6-Pad2)") (node (ref "L6") (pin "2") (pinfunction "2")) (node (ref "R11") (pin "1")) (node (ref "U20") (pin "20") (pinfunction "Y+SIN"))) - (net (code "346") (name "Net-(P4-Pad1)") + (net (code "360") (name "Net-(P4-Pad1)") (node (ref "P4") (pin "1") (pinfunction "P1")) (node (ref "R48") (pin "2")) (node (ref "U23") (pin "25") (pinfunction "M1")) (node (ref "U23") (pin "27") (pinfunction "M0")) (node (ref "U23") (pin "29") (pinfunction "M2"))) - (net (code "347") (name "Net-(P9-Pad1)") + (net (code "361") (name "Net-(P9-Pad1)") (node (ref "P9") (pin "1") (pinfunction "1")) (node (ref "U23") (pin "51") (pinfunction "SGCK3"))) - (net (code "348") (name "Net-(P10-Pad1)") + (net (code "362") (name "Net-(P10-Pad1)") (node (ref "P10") (pin "1") (pinfunction "1")) (node (ref "U23") (pin "87") (pinfunction "P87"))) - (net (code "349") (name "Net-(P11-Pad1)") + (net (code "363") (name "Net-(P11-Pad1)") (node (ref "P11") (pin "1") (pinfunction "1")) (node (ref "U23") (pin "82") (pinfunction "PGCK4"))) - (net (code "350") (name "Net-(POT1-Pad1)") + (net (code "364") (name "Net-(POT1-Pad1)") (node (ref "POT1") (pin "1") (pinfunction "1")) (node (ref "R9") (pin "1"))) - (net (code "351") (name "Net-(Q1-Pad1)") + (net (code "365") (name "Net-(Q1-Pad1)") (node (ref "Q1") (pin "1") (pinfunction "E")) (node (ref "R32") (pin "1")) (node (ref "R39") (pin "2"))) - (net (code "352") (name "Net-(Q1-Pad2)") + (net (code "366") (name "Net-(Q1-Pad2)") (node (ref "Q1") (pin "2") (pinfunction "B")) (node (ref "R16") (pin "1"))) - (net (code "353") (name "Net-(Q2-Pad1)") + (net (code "367") (name "Net-(Q2-Pad1)") (node (ref "Q2") (pin "1") (pinfunction "E")) (node (ref "R33") (pin "1")) (node (ref "R40") (pin "1"))) - (net (code "354") (name "Net-(Q2-Pad2)") + (net (code "368") (name "Net-(Q2-Pad2)") (node (ref "Q2") (pin "2") (pinfunction "B")) (node (ref "R17") (pin "1"))) - (net (code "355") (name "Net-(Q3-Pad1)") + (net (code "369") (name "Net-(Q3-Pad1)") (node (ref "Q3") (pin "1") (pinfunction "E")) (node (ref "R34") (pin "1")) (node (ref "R41") (pin "2"))) - (net (code "356") (name "Net-(Q3-Pad2)") + (net (code "370") (name "Net-(Q3-Pad2)") (node (ref "Q3") (pin "2") (pinfunction "B")) (node (ref "R18") (pin "1"))) - (net (code "357") (name "Net-(R4-Pad1)") + (net (code "371") (name "Net-(R4-Pad1)") (node (ref "R4") (pin "1")) (node (ref "U20") (pin "2") (pinfunction "MCTR"))) - (net (code "358") (name "Net-(R5-Pad1)") + (net (code "372") (name "Net-(R5-Pad1)") (node (ref "R5") (pin "1")) (node (ref "U11") (pin "59") (pinfunction "MODE_16/32")) (node (ref "W1") (pin "2") (pinfunction "2"))) - (net (code "359") (name "Net-(R6-Pad1)") + (net (code "373") (name "Net-(R6-Pad1)") (node (ref "R6") (pin "1")) (node (ref "U11") (pin "138") (pinfunction "FLT#")) (node (ref "W2") (pin "2") (pinfunction "2"))) - (net (code "360") (name "Net-(R7-Pad1)") + (net (code "374") (name "Net-(R7-Pad1)") (node (ref "R7") (pin "1")) (node (ref "U11") (pin "135") (pinfunction "SNV")) (node (ref "W3") (pin "2") (pinfunction "2"))) - (net (code "361") (name "Net-(R9-Pad2)") + (net (code "375") (name "Net-(R9-Pad2)") (node (ref "R9") (pin "2")) (node (ref "U20") (pin "21") (pinfunction "B/ADJ"))) - (net (code "362") (name "Net-(R10-Pad2)") + (net (code "376") (name "Net-(R10-Pad2)") (node (ref "R10") (pin "2")) (node (ref "U20") (pin "22") (pinfunction "Y+SOUT"))) - (net (code "363") (name "Net-(R19-Pad2)") + (net (code "377") (name "Net-(R19-Pad2)") (node (ref "R19") (pin "2")) (node (ref "U10") (pin "115") (pinfunction "OUT_C"))) - (net (code "364") (name "Net-(R27-Pad1)") + (net (code "378") (name "Net-(R27-Pad1)") (node (ref "R27") (pin "1")) (node (ref "U10") (pin "135") (pinfunction "R/2"))) - (net (code "365") (name "Net-(R28-Pad2)") + (net (code "379") (name "Net-(R28-Pad2)") (node (ref "R28") (pin "2")) (node (ref "U1") (pin "6") (pinfunction "SCL")) (node (ref "U11") (pin "128") (pinfunction "ERD#/SCL"))) - (net (code "366") (name "Net-(R29-Pad2)") + (net (code "380") (name "Net-(R29-Pad2)") (node (ref "R29") (pin "2")) (node (ref "U1") (pin "5") (pinfunction "SDA")) (node (ref "U11") (pin "127") (pinfunction "EWR#/SDA"))) - (net (code "367") (name "Net-(R36-Pad2)") + (net (code "381") (name "Net-(R36-Pad2)") (node (ref "R36") (pin "2")) (node (ref "U8") (pin "6") (pinfunction "CEXT1"))) - (net (code "368") (name "Net-(R38-Pad1)") + (net (code "382") (name "Net-(R38-Pad1)") (node (ref "R38") (pin "1")) (node (ref "U8") (pin "69") (pinfunction "RSET"))) - (net (code "369") (name "Net-(U8-Pad58)") + (net (code "383") (name "Net-(U8-Pad58)") (node (ref "U8") (pin "58") (pinfunction "BIN")) (node (ref "U8") (pin "68") (pinfunction "BOUT"))) - (net (code "370") (name "Net-(U8-Pad60)") + (net (code "384") (name "Net-(U8-Pad60)") (node (ref "U8") (pin "60") (pinfunction "GIN")) (node (ref "U8") (pin "70") (pinfunction "GOUT"))) - (net (code "371") (name "Net-(U8-Pad62)") + (net (code "385") (name "Net-(U8-Pad62)") (node (ref "U8") (pin "62") (pinfunction "RIN")) (node (ref "U8") (pin "72") (pinfunction "ROUT"))) - (net (code "372") (name "Net-(U20-Pad23)") + (net (code "386") (name "Net-(U20-Pad23)") (node (ref "U20") (pin "23") (pinfunction "OSC")) (node (ref "X3") (pin "2") (pinfunction "2"))) - (net (code "373") (name "no_connect_373") - (node (ref "BUS1") (pin "A1") (pinfunction "TRST#"))) - (net (code "374") (name "no_connect_374") - (node (ref "BUS1") (pin "A11") (pinfunction "RESERVED"))) - (net (code "375") (name "no_connect_375") - (node (ref "BUS1") (pin "A14") (pinfunction "3.3VAUX"))) - (net (code "376") (name "no_connect_376") - (node (ref "BUS1") (pin "A19") (pinfunction "PME#"))) - (net (code "377") (name "no_connect_377") - (node (ref "BUS1") (pin "A3") (pinfunction "TMS"))) - (net (code "378") (name "no_connect_378") - (node (ref "BUS1") (pin "A40") (pinfunction "RESERVED"))) - (net (code "379") (name "no_connect_379") - (node (ref "BUS1") (pin "A41") (pinfunction "RESERVED"))) - (net (code "380") (name "no_connect_380") - (node (ref "BUS1") (pin "A60") (pinfunction "REQ64#"))) - (net (code "381") (name "no_connect_381") - (node (ref "BUS1") (pin "A7") (pinfunction "INTC#"))) - (net (code "382") (name "no_connect_382") - (node (ref "BUS1") (pin "A9") (pinfunction "RESERVED"))) - (net (code "383") (name "no_connect_383") - (node (ref "BUS1") (pin "B1") (pinfunction "-12V"))) - (net (code "384") (name "no_connect_384") - (node (ref "BUS1") (pin "B10") (pinfunction "RESERVED"))) - (net (code "385") (name "no_connect_385") - (node (ref "BUS1") (pin "B14") (pinfunction "RESERVED"))) - (net (code "386") (name "no_connect_386") - (node (ref "BUS1") (pin "B2") (pinfunction "TCK"))) (net (code "387") (name "no_connect_387") - (node (ref "BUS1") (pin "B60") (pinfunction "ACK64#"))) + (node (ref "BUS1") (pin "A1") (pinfunction "TRST#"))) (net (code "388") (name "no_connect_388") - (node (ref "BUS1") (pin "B7") (pinfunction "INTB#"))) + (node (ref "BUS1") (pin "A11") (pinfunction "RESERVED"))) (net (code "389") (name "no_connect_389") - (node (ref "BUS1") (pin "B8") (pinfunction "INTD#"))) + (node (ref "BUS1") (pin "A14") (pinfunction "3.3VAUX"))) (net (code "390") (name "no_connect_390") - (node (ref "U10") (pin "101") (pinfunction "TDO"))) + (node (ref "BUS1") (pin "A19") (pinfunction "PME#"))) (net (code "391") (name "no_connect_391") - (node (ref "U10") (pin "105") (pinfunction "CLKX2"))) + (node (ref "BUS1") (pin "A3") (pinfunction "TMS"))) (net (code "392") (name "no_connect_392") - (node (ref "U10") (pin "106") (pinfunction "XTAL2_IN"))) + (node (ref "BUS1") (pin "A40") (pinfunction "RESERVED"))) (net (code "393") (name "no_connect_393") - (node (ref "U10") (pin "107") (pinfunction "XTAL2_OUT"))) + (node (ref "BUS1") (pin "A41") (pinfunction "RESERVED"))) (net (code "394") (name "no_connect_394") - (node (ref "U10") (pin "127") (pinfunction "VID1_C"))) + (node (ref "BUS1") (pin "A60") (pinfunction "REQ64#"))) (net (code "395") (name "no_connect_395") - (node (ref "U10") (pin "129") (pinfunction "VID2_C"))) + (node (ref "BUS1") (pin "A7") (pinfunction "INTC#"))) (net (code "396") (name "no_connect_396") - (node (ref "U10") (pin "131") (pinfunction "VID3_C"))) + (node (ref "BUS1") (pin "A9") (pinfunction "RESERVED"))) (net (code "397") (name "no_connect_397") - (node (ref "U10") (pin "150") (pinfunction "VID3_Y"))) + (node (ref "BUS1") (pin "B1") (pinfunction "-12V"))) (net (code "398") (name "no_connect_398") - (node (ref "U10") (pin "152") (pinfunction "VID2_Y"))) + (node (ref "BUS1") (pin "B10") (pinfunction "RESERVED"))) (net (code "399") (name "no_connect_399") - (node (ref "U10") (pin "154") (pinfunction "VID1_Y"))) + (node (ref "BUS1") (pin "B14") (pinfunction "RESERVED"))) (net (code "400") (name "no_connect_400") - (node (ref "U10") (pin "25") (pinfunction "FIELD_1"))) + (node (ref "BUS1") (pin "B2") (pinfunction "TCK"))) (net (code "401") (name "no_connect_401") - (node (ref "U10") (pin "26") (pinfunction "FIELD_0"))) + (node (ref "BUS1") (pin "B60") (pinfunction "ACK64#"))) (net (code "402") (name "no_connect_402") - (node (ref "U10") (pin "27") (pinfunction "FIELD_2"))) + (node (ref "BUS1") (pin "B7") (pinfunction "INTB#"))) (net (code "403") (name "no_connect_403") - (node (ref "U10") (pin "28") (pinfunction "CBFLAG"))) + (node (ref "BUS1") (pin "B8") (pinfunction "INTD#"))) (net (code "404") (name "no_connect_404") - (node (ref "U10") (pin "29") (pinfunction "VALID"))) + (node (ref "U10") (pin "101") (pinfunction "TDO"))) (net (code "405") (name "no_connect_405") - (node (ref "U10") (pin "32") (pinfunction "ACTIVE"))) + (node (ref "U10") (pin "105") (pinfunction "CLKX2"))) (net (code "406") (name "no_connect_406") - (node (ref "U10") (pin "33") (pinfunction "VACTIVE"))) + (node (ref "U10") (pin "106") (pinfunction "XTAL2_IN"))) (net (code "407") (name "no_connect_407") - (node (ref "U10") (pin "35") (pinfunction "HACTIVE"))) + (node (ref "U10") (pin "107") (pinfunction "XTAL2_OUT"))) (net (code "408") (name "no_connect_408") - (node (ref "U10") (pin "37") (pinfunction "SERROR"))) + (node (ref "U10") (pin "127") (pinfunction "VID1_C"))) (net (code "409") (name "no_connect_409") - (node (ref "U10") (pin "38") (pinfunction "CAPTURE"))) + (node (ref "U10") (pin "129") (pinfunction "VID2_C"))) (net (code "410") (name "no_connect_410") - (node (ref "U12") (pin "67") (pinfunction "PRD0"))) + (node (ref "U10") (pin "131") (pinfunction "VID3_C"))) (net (code "411") (name "no_connect_411") - (node (ref "U12") (pin "68") (pinfunction "PRD1"))) + (node (ref "U10") (pin "150") (pinfunction "VID3_Y"))) (net (code "412") (name "no_connect_412") - (node (ref "U12") (pin "69") (pinfunction "PRD2"))) + (node (ref "U10") (pin "152") (pinfunction "VID2_Y"))) (net (code "413") (name "no_connect_413") - (node (ref "U12") (pin "70") (pinfunction "PRD3"))) + (node (ref "U10") (pin "154") (pinfunction "VID1_Y"))) (net (code "414") (name "no_connect_414") - (node (ref "U13") (pin "67") (pinfunction "PRD0"))) + (node (ref "U10") (pin "25") (pinfunction "FIELD_1"))) (net (code "415") (name "no_connect_415") - (node (ref "U13") (pin "68") (pinfunction "PRD1"))) + (node (ref "U10") (pin "26") (pinfunction "FIELD_0"))) (net (code "416") (name "no_connect_416") - (node (ref "U13") (pin "69") (pinfunction "PRD2"))) + (node (ref "U10") (pin "27") (pinfunction "FIELD_2"))) (net (code "417") (name "no_connect_417") - (node (ref "U13") (pin "70") (pinfunction "PRD3"))) + (node (ref "U10") (pin "28") (pinfunction "CBFLAG"))) (net (code "418") (name "no_connect_418") - (node (ref "U14") (pin "67") (pinfunction "PRD0"))) + (node (ref "U10") (pin "29") (pinfunction "VALID"))) (net (code "419") (name "no_connect_419") - (node (ref "U14") (pin "68") (pinfunction "PRD1"))) + (node (ref "U10") (pin "32") (pinfunction "ACTIVE"))) (net (code "420") (name "no_connect_420") - (node (ref "U14") (pin "69") (pinfunction "PRD2"))) + (node (ref "U10") (pin "33") (pinfunction "VACTIVE"))) (net (code "421") (name "no_connect_421") - (node (ref "U14") (pin "70") (pinfunction "PRD3"))) + (node (ref "U10") (pin "35") (pinfunction "HACTIVE"))) (net (code "422") (name "no_connect_422") - (node (ref "U15") (pin "67") (pinfunction "PRD0"))) + (node (ref "U10") (pin "37") (pinfunction "SERROR"))) (net (code "423") (name "no_connect_423") - (node (ref "U15") (pin "68") (pinfunction "PRD1"))) + (node (ref "U10") (pin "38") (pinfunction "CAPTURE"))) (net (code "424") (name "no_connect_424") - (node (ref "U15") (pin "69") (pinfunction "PRD2"))) + (node (ref "U12") (pin "67") (pinfunction "PRD0"))) (net (code "425") (name "no_connect_425") - (node (ref "U15") (pin "70") (pinfunction "PRD3"))) + (node (ref "U12") (pin "68") (pinfunction "PRD1"))) (net (code "426") (name "no_connect_426") - (node (ref "U16") (pin "67") (pinfunction "PRD0"))) + (node (ref "U12") (pin "69") (pinfunction "PRD2"))) (net (code "427") (name "no_connect_427") - (node (ref "U16") (pin "68") (pinfunction "PRD1"))) + (node (ref "U12") (pin "70") (pinfunction "PRD3"))) (net (code "428") (name "no_connect_428") - (node (ref "U16") (pin "69") (pinfunction "PRD2"))) + (node (ref "U13") (pin "67") (pinfunction "PRD0"))) (net (code "429") (name "no_connect_429") - (node (ref "U16") (pin "70") (pinfunction "PRD3"))) + (node (ref "U13") (pin "68") (pinfunction "PRD1"))) (net (code "430") (name "no_connect_430") - (node (ref "U17") (pin "67") (pinfunction "PRD0"))) + (node (ref "U13") (pin "69") (pinfunction "PRD2"))) (net (code "431") (name "no_connect_431") - (node (ref "U17") (pin "68") (pinfunction "PRD1"))) + (node (ref "U13") (pin "70") (pinfunction "PRD3"))) (net (code "432") (name "no_connect_432") - (node (ref "U17") (pin "69") (pinfunction "PRD2"))) + (node (ref "U14") (pin "67") (pinfunction "PRD0"))) (net (code "433") (name "no_connect_433") - (node (ref "U17") (pin "70") (pinfunction "PRD3"))) + (node (ref "U14") (pin "68") (pinfunction "PRD1"))) (net (code "434") (name "no_connect_434") - (node (ref "U18") (pin "67") (pinfunction "PRD0"))) + (node (ref "U14") (pin "69") (pinfunction "PRD2"))) (net (code "435") (name "no_connect_435") - (node (ref "U18") (pin "68") (pinfunction "PRD1"))) + (node (ref "U14") (pin "70") (pinfunction "PRD3"))) (net (code "436") (name "no_connect_436") - (node (ref "U18") (pin "69") (pinfunction "PRD2"))) + (node (ref "U15") (pin "67") (pinfunction "PRD0"))) (net (code "437") (name "no_connect_437") - (node (ref "U18") (pin "70") (pinfunction "PRD3"))) + (node (ref "U15") (pin "68") (pinfunction "PRD1"))) (net (code "438") (name "no_connect_438") - (node (ref "U19") (pin "67") (pinfunction "PRD0"))) + (node (ref "U15") (pin "69") (pinfunction "PRD2"))) (net (code "439") (name "no_connect_439") - (node (ref "U19") (pin "68") (pinfunction "PRD1"))) + (node (ref "U15") (pin "70") (pinfunction "PRD3"))) (net (code "440") (name "no_connect_440") - (node (ref "U19") (pin "69") (pinfunction "PRD2"))) + (node (ref "U16") (pin "67") (pinfunction "PRD0"))) (net (code "441") (name "no_connect_441") - (node (ref "U19") (pin "70") (pinfunction "PRD3"))) + (node (ref "U16") (pin "68") (pinfunction "PRD1"))) (net (code "442") (name "no_connect_442") - (node (ref "U20") (pin "1") (pinfunction "-R.Y"))) + (node (ref "U16") (pin "69") (pinfunction "PRD2"))) (net (code "443") (name "no_connect_443") - (node (ref "U20") (pin "3") (pinfunction "-B.Y"))) + (node (ref "U16") (pin "70") (pinfunction "PRD3"))) (net (code "444") (name "no_connect_444") - (node (ref "U20") (pin "4") (pinfunction "H/2"))) + (node (ref "U17") (pin "67") (pinfunction "PRD0"))) (net (code "445") (name "no_connect_445") - (node (ref "U20") (pin "5") (pinfunction "Y"))) + (node (ref "U17") (pin "68") (pinfunction "PRD1"))) (net (code "446") (name "no_connect_446") - (node (ref "U21") (pin "6") (pinfunction "CEO"))) + (node (ref "U17") (pin "69") (pinfunction "PRD2"))) (net (code "447") (name "no_connect_447") - (node (ref "U22") (pin "10") (pinfunction "P/A4"))) + (node (ref "U17") (pin "70") (pinfunction "PRD3"))) (net (code "448") (name "no_connect_448") - (node (ref "U22") (pin "14") (pinfunction "P14"))) + (node (ref "U18") (pin "67") (pinfunction "PRD0"))) (net (code "449") (name "no_connect_449") - (node (ref "U22") (pin "15") (pinfunction "P15"))) + (node (ref "U18") (pin "68") (pinfunction "PRD1"))) (net (code "450") (name "no_connect_450") - (node (ref "U22") (pin "16") (pinfunction "P16"))) + (node (ref "U18") (pin "69") (pinfunction "PRD2"))) (net (code "451") (name "no_connect_451") - (node (ref "U22") (pin "27") (pinfunction "PGCK2"))) + (node (ref "U18") (pin "70") (pinfunction "PRD3"))) (net (code "452") (name "no_connect_452") - (node (ref "U22") (pin "3") (pinfunction "P/A17"))) + (node (ref "U19") (pin "67") (pinfunction "PRD0"))) (net (code "453") (name "no_connect_453") - (node (ref "U22") (pin "30") (pinfunction "P/LDC"))) + (node (ref "U19") (pin "68") (pinfunction "PRD1"))) (net (code "454") (name "no_connect_454") - (node (ref "U22") (pin "4") (pinfunction "P/TDI"))) + (node (ref "U19") (pin "69") (pinfunction "PRD2"))) (net (code "455") (name "no_connect_455") - (node (ref "U22") (pin "5") (pinfunction "P/TCK"))) + (node (ref "U19") (pin "70") (pinfunction "PRD3"))) (net (code "456") (name "no_connect_456") - (node (ref "U22") (pin "6") (pinfunction "P/A3"))) + (node (ref "U20") (pin "1") (pinfunction "-R.Y"))) (net (code "457") (name "no_connect_457") - (node (ref "U22") (pin "65") (pinfunction "P65"))) + (node (ref "U20") (pin "3") (pinfunction "-B.Y"))) (net (code "458") (name "no_connect_458") - (node (ref "U22") (pin "66") (pinfunction "P66"))) + (node (ref "U20") (pin "4") (pinfunction "H/2"))) (net (code "459") (name "no_connect_459") - (node (ref "U22") (pin "73") (pinfunction "DOUT/SGCK4"))) + (node (ref "U20") (pin "5") (pinfunction "Y"))) (net (code "460") (name "no_connect_460") - (node (ref "U22") (pin "76") (pinfunction "TDO"))) + (node (ref "U21") (pin "6") (pinfunction "CEO"))) (net (code "461") (name "no_connect_461") - (node (ref "U23") (pin "100") (pinfunction "P100"))) + (node (ref "U22") (pin "10") (pinfunction "P/A4"))) (net (code "462") (name "no_connect_462") - (node (ref "U23") (pin "2") (pinfunction "SGCK1"))) + (node (ref "U22") (pin "14") (pinfunction "P14"))) (net (code "463") (name "no_connect_463") - (node (ref "U23") (pin "31") (pinfunction "P31/HDC"))) + (node (ref "U22") (pin "15") (pinfunction "P15"))) (net (code "464") (name "no_connect_464") - (node (ref "U23") (pin "33") (pinfunction "P33/LDC"))) + (node (ref "U22") (pin "16") (pinfunction "P16"))) (net (code "465") (name "no_connect_465") - (node (ref "U23") (pin "49") (pinfunction "P49"))) + (node (ref "U22") (pin "27") (pinfunction "PGCK2"))) (net (code "466") (name "no_connect_466") - (node (ref "U23") (pin "50") (pinfunction "P50"))) + (node (ref "U22") (pin "3") (pinfunction "P/A17"))) (net (code "467") (name "no_connect_467") - (node (ref "U23") (pin "58") (pinfunction "P58"))) + (node (ref "U22") (pin "30") (pinfunction "P/LDC"))) (net (code "468") (name "no_connect_468") - (node (ref "U23") (pin "60") (pinfunction "P60"))) + (node (ref "U22") (pin "4") (pinfunction "P/TDI"))) (net (code "469") (name "no_connect_469") - (node (ref "U23") (pin "62") (pinfunction "P62"))) + (node (ref "U22") (pin "5") (pinfunction "P/TCK"))) (net (code "470") (name "no_connect_470") - (node (ref "U23") (pin "68") (pinfunction "P68"))) + (node (ref "U22") (pin "6") (pinfunction "P/A3"))) (net (code "471") (name "no_connect_471") - (node (ref "U23") (pin "76") (pinfunction "DOUT/SGCK4"))) + (node (ref "U22") (pin "65") (pinfunction "P65"))) (net (code "472") (name "no_connect_472") - (node (ref "U23") (pin "79") (pinfunction "TDO"))) + (node (ref "U22") (pin "66") (pinfunction "P66"))) (net (code "473") (name "no_connect_473") - (node (ref "U23") (pin "98") (pinfunction "P98"))) + (node (ref "U22") (pin "73") (pinfunction "DOUT/SGCK4"))) (net (code "474") (name "no_connect_474") - (node (ref "U23") (pin "99") (pinfunction "P99"))) + (node (ref "U22") (pin "76") (pinfunction "TDO"))) (net (code "475") (name "no_connect_475") - (node (ref "U24") (pin "121") (pinfunction "TDO"))) + (node (ref "U23") (pin "100") (pinfunction "P100"))) (net (code "476") (name "no_connect_476") - (node (ref "U24") (pin "84") (pinfunction "PGCK3"))) + (node (ref "U23") (pin "2") (pinfunction "SGCK1"))) (net (code "477") (name "no_connect_477") - (node (ref "U7") (pin "8") (pinfunction "CLK/2"))) + (node (ref "U23") (pin "31") (pinfunction "P31/HDC"))) (net (code "478") (name "no_connect_478") - (node (ref "U8") (pin "4") (pinfunction "SYNC0"))) + (node (ref "U23") (pin "33") (pinfunction "P33/LDC"))) (net (code "479") (name "no_connect_479") - (node (ref "U8") (pin "5") (pinfunction "SYNC1"))) + (node (ref "U23") (pin "49") (pinfunction "P49"))) (net (code "480") (name "no_connect_480") - (node (ref "U8") (pin "74") (pinfunction "BVID1"))) + (node (ref "U23") (pin "50") (pinfunction "P50"))) (net (code "481") (name "no_connect_481") - (node (ref "U8") (pin "77") (pinfunction "GVID1"))) + (node (ref "U23") (pin "58") (pinfunction "P58"))) (net (code "482") (name "no_connect_482") - (node (ref "U8") (pin "81") (pinfunction "RVID1"))) + (node (ref "U23") (pin "60") (pinfunction "P60"))) (net (code "483") (name "no_connect_483") - (node (ref "U9") (pin "27") (pinfunction "CR0"))) + (node (ref "U23") (pin "62") (pinfunction "P62"))) (net (code "484") (name "no_connect_484") - (node (ref "U9") (pin "30") (pinfunction "CR3"))) + (node (ref "U23") (pin "68") (pinfunction "P68"))) (net (code "485") (name "no_connect_485") - (node (ref "U9") (pin "5") (pinfunction "S0"))) + (node (ref "U23") (pin "76") (pinfunction "DOUT/SGCK4"))) (net (code "486") (name "no_connect_486") + (node (ref "U23") (pin "79") (pinfunction "TDO"))) + (net (code "487") (name "no_connect_487") + (node (ref "U23") (pin "98") (pinfunction "P98"))) + (net (code "488") (name "no_connect_488") + (node (ref "U23") (pin "99") (pinfunction "P99"))) + (net (code "489") (name "no_connect_489") + (node (ref "U24") (pin "121") (pinfunction "TDO"))) + (net (code "490") (name "no_connect_490") + (node (ref "U24") (pin "84") (pinfunction "PGCK3"))) + (net (code "491") (name "no_connect_491") + (node (ref "U7") (pin "8") (pinfunction "CLK/2"))) + (net (code "492") (name "no_connect_492") + (node (ref "U8") (pin "4") (pinfunction "SYNC0"))) + (net (code "493") (name "no_connect_493") + (node (ref "U8") (pin "5") (pinfunction "SYNC1"))) + (net (code "494") (name "no_connect_494") + (node (ref "U8") (pin "74") (pinfunction "BVID1"))) + (net (code "495") (name "no_connect_495") + (node (ref "U8") (pin "77") (pinfunction "GVID1"))) + (net (code "496") (name "no_connect_496") + (node (ref "U8") (pin "81") (pinfunction "RVID1"))) + (net (code "497") (name "no_connect_497") + (node (ref "U9") (pin "27") (pinfunction "CR0"))) + (net (code "498") (name "no_connect_498") + (node (ref "U9") (pin "30") (pinfunction "CR3"))) + (net (code "499") (name "no_connect_499") + (node (ref "U9") (pin "5") (pinfunction "S0"))) + (net (code "500") (name "no_connect_500") (node (ref "U9") (pin "6") (pinfunction "S1")))))