example_board.fit.rpt 584 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891
  1. Fitter report for example_board
  2. Sat May 09 14:19:19 2026
  3. Quartus II 64-Bit Version 13.0.0 Build 156 04/24/2013 SJ Full Version
  4. ---------------------
  5. ; Table of Contents ;
  6. ---------------------
  7. 1. Legal Notice
  8. 2. Fitter Summary
  9. 3. Fitter Settings
  10. 4. Parallel Compilation
  11. 5. I/O Assignment Warnings
  12. 6. Ignored Assignments
  13. 7. Incremental Compilation Preservation Summary
  14. 8. Incremental Compilation Partition Settings
  15. 9. Incremental Compilation Placement Preservation
  16. 10. Incremental Compilation LogicLock Region Preservation
  17. 11. Pin-Out File
  18. 12. Fitter Resource Usage Summary
  19. 13. LogicLock Region Resource Usage
  20. 14. Fitter Partition Statistics
  21. 15. Input Pins
  22. 16. Output Pins
  23. 17. Bidir Pins
  24. 18. Dual Purpose and Dedicated Pins
  25. 19. I/O Bank Usage
  26. 20. All Package Pins
  27. 21. PLL Summary
  28. 22. PLL Usage
  29. 23. Fitter Resource Utilization by Entity
  30. 24. Delay Chain Summary
  31. 25. Pad To Core Delay Chain Fanout
  32. 26. Control Signals
  33. 27. Global & Other Fast Signals
  34. 28. Non-Global High Fan-Out Signals
  35. 29. Fitter RAM Summary
  36. 30. Other Routing Usage Summary
  37. 31. LAB Logic Elements
  38. 32. LAB-wide Signals
  39. 33. LAB Signals Sourced
  40. 34. LAB Signals Sourced Out
  41. 35. LAB Distinct Inputs
  42. 36. I/O Rules Summary
  43. 37. I/O Rules Details
  44. 38. I/O Rules Matrix
  45. 39. Fitter Device Options
  46. 40. Operating Settings and Conditions
  47. 41. Fitter Messages
  48. 42. Fitter Suppressed Messages
  49. ----------------
  50. ; Legal Notice ;
  51. ----------------
  52. Copyright (C) 1991-2013 Altera Corporation
  53. Your use of Altera Corporation's design tools, logic functions
  54. and other software and tools, and its AMPP partner logic
  55. functions, and any output files from any of the foregoing
  56. (including device programming or simulation files), and any
  57. associated documentation or information are expressly subject
  58. to the terms and conditions of the Altera Program License
  59. Subscription Agreement, Altera MegaCore Function License
  60. Agreement, or other applicable license agreement, including,
  61. without limitation, that your use is for the sole purpose of
  62. programming logic devices manufactured by Altera and sold by
  63. Altera or its authorized distributors. Please refer to the
  64. applicable agreement for further details.
  65. +----------------------------------------------------------------------------------+
  66. ; Fitter Summary ;
  67. +------------------------------------+---------------------------------------------+
  68. ; Fitter Status ; Successful - Sat May 09 14:19:19 2026 ;
  69. ; Quartus II 64-Bit Version ; 13.0.0 Build 156 04/24/2013 SJ Full Version ;
  70. ; Revision Name ; example_board ;
  71. ; Top-level Entity Name ; example_board ;
  72. ; Family ; Cyclone IV E ;
  73. ; Device ; EP4CE75F29C8 ;
  74. ; Timing Models ; Final ;
  75. ; Total logic elements ; 1,628 / 75,408 ( 2 % ) ;
  76. ; Total combinational functions ; 1,532 / 75,408 ( 2 % ) ;
  77. ; Dedicated logic registers ; 484 / 75,408 ( < 1 % ) ;
  78. ; Total registers ; 484 ;
  79. ; Total pins ; 15 / 427 ( 4 % ) ;
  80. ; Total virtual pins ; 1 ;
  81. ; Total memory bits ; 16,384 / 2,810,880 ( < 1 % ) ;
  82. ; Embedded Multiplier 9-bit elements ; 0 / 400 ( 0 % ) ;
  83. ; Total PLLs ; 1 / 4 ( 25 % ) ;
  84. +------------------------------------+---------------------------------------------+
  85. +------------------------------------------------------------------------------------------------------------------------------------------------------------+
  86. ; Fitter Settings ;
  87. +----------------------------------------------------------------------------+---------------------------------------+---------------------------------------+
  88. ; Option ; Setting ; Default Value ;
  89. +----------------------------------------------------------------------------+---------------------------------------+---------------------------------------+
  90. ; Device ; EP4CE75F29C8 ; ;
  91. ; Maximum processors allowed for parallel compilation ; All ; ;
  92. ; Minimum Core Junction Temperature ; 0 ; ;
  93. ; Maximum Core Junction Temperature ; 85 ; ;
  94. ; Router Timing Optimization Level ; MAXIMUM ; Normal ;
  95. ; Placement Effort Multiplier ; 10 ; 1.0 ;
  96. ; Router Effort Multiplier ; 10 ; 1.0 ;
  97. ; Fit Attempts to Skip ; 0 ; 0.0 ;
  98. ; Device I/O Standard ; 3.3-V LVTTL ; ;
  99. ; Optimize Hold Timing ; IO Paths and Minimum TPD Paths ; All Paths ;
  100. ; Optimize Timing for ECOs ; On ; Off ;
  101. ; Final Placement Optimizations ; Always ; Automatically ;
  102. ; Fitter Aggressive Routability Optimizations ; Always ; Automatically ;
  103. ; Perform Physical Synthesis for Combinational Logic for Fitting ; On ; Off ;
  104. ; Perform Physical Synthesis for Combinational Logic for Performance ; On ; Off ;
  105. ; Fitter Effort ; Standard Fit ; Auto Fit ;
  106. ; Physical Synthesis Effort Level ; Extra ; Normal ;
  107. ; Maximum number of global clocks allowed ; 6 ; -1 (Unlimited) ;
  108. ; Use smart compilation ; Off ; Off ;
  109. ; Enable parallel Assembler and TimeQuest Timing Analyzer during compilation ; On ; On ;
  110. ; Enable compact report table ; Off ; Off ;
  111. ; Auto Merge PLLs ; On ; On ;
  112. ; Perform Clocking Topology Analysis During Routing ; Off ; Off ;
  113. ; Optimize Multi-Corner Timing ; On ; On ;
  114. ; PowerPlay Power Optimization ; Normal compilation ; Normal compilation ;
  115. ; SSN Optimization ; Off ; Off ;
  116. ; Optimize Timing ; Normal compilation ; Normal compilation ;
  117. ; Regenerate full fit report during ECO compiles ; Off ; Off ;
  118. ; Optimize IOC Register Placement for Timing ; Normal ; Normal ;
  119. ; Limit to One Fitting Attempt ; Off ; Off ;
  120. ; Fitter Initial Placement Seed ; 1 ; 1 ;
  121. ; PCI I/O ; Off ; Off ;
  122. ; Weak Pull-Up Resistor ; Off ; Off ;
  123. ; Enable Bus-Hold Circuitry ; Off ; Off ;
  124. ; Auto Packed Registers ; Auto ; Auto ;
  125. ; Auto Delay Chains ; On ; On ;
  126. ; Auto Delay Chains for High Fanout Input Pins ; Off ; Off ;
  127. ; Allow Single-ended Buffer for Differential-XSTL Input ; Off ; Off ;
  128. ; Treat Bidirectional Pin as Output Pin ; Off ; Off ;
  129. ; Perform Register Duplication for Performance ; Off ; Off ;
  130. ; Perform Logic to Memory Mapping for Fitting ; Off ; Off ;
  131. ; Perform Register Retiming for Performance ; Off ; Off ;
  132. ; Perform Asynchronous Signal Pipelining ; Off ; Off ;
  133. ; Logic Cell Insertion - Logic Duplication ; Auto ; Auto ;
  134. ; Auto Register Duplication ; Auto ; Auto ;
  135. ; Auto Global Clock ; On ; On ;
  136. ; Auto Global Register Control Signals ; On ; On ;
  137. ; Reserve all unused pins ; As input tri-stated with weak pull-up ; As input tri-stated with weak pull-up ;
  138. ; Synchronizer Identification ; Off ; Off ;
  139. ; Enable Beneficial Skew Optimization ; On ; On ;
  140. ; Optimize Design for Metastability ; On ; On ;
  141. ; Force Fitter to Avoid Periphery Placement Warnings ; Off ; Off ;
  142. ; Enable input tri-state on active configuration pins in user mode ; Off ; Off ;
  143. +----------------------------------------------------------------------------+---------------------------------------+---------------------------------------+
  144. +------------------------------------------+
  145. ; Parallel Compilation ;
  146. +----------------------------+-------------+
  147. ; Processors ; Number ;
  148. +----------------------------+-------------+
  149. ; Number detected on machine ; 8 ;
  150. ; Maximum allowed ; 4 ;
  151. ; ; ;
  152. ; Average used ; 2.32 ;
  153. ; Maximum used ; 4 ;
  154. ; ; ;
  155. ; Usage by Processor ; % Time Used ;
  156. ; Processor 1 ; 100.0% ;
  157. ; Processors 2-4 ; 44.0% ;
  158. ; Processors 5-8 ; 0.0% ;
  159. +----------------------------+-------------+
  160. +----------------------------------------+
  161. ; I/O Assignment Warnings ;
  162. +---------------+------------------------+
  163. ; Pin Name ; Reason ;
  164. +---------------+------------------------+
  165. ; SPI0_CSN ; Missing drive strength ;
  166. ; SPI0_SCK ; Missing drive strength ;
  167. ; UART0_UARTTXD ; Missing drive strength ;
  168. ; BAUD_RATE ; Missing drive strength ;
  169. ; GPIO4_1 ; Missing drive strength ;
  170. ; GPIO4_2 ; Missing drive strength ;
  171. ; SPI0_SI_IO0 ; Missing drive strength ;
  172. ; TEST_SINGLE ; Missing drive strength ;
  173. ; UART1_RX ; Missing drive strength ;
  174. ; UART1_TX ; Missing drive strength ;
  175. ; so_io1 ; Missing drive strength ;
  176. +---------------+------------------------+
  177. +-------------------------------------------------------------------------------------------------------+
  178. ; Ignored Assignments ;
  179. +----------+----------------+--------------+----------------------+--------------------+----------------+
  180. ; Name ; Ignored Entity ; Ignored From ; Ignored To ; Ignored Value ; Ignored Source ;
  181. +----------+----------------+--------------+----------------------+--------------------+----------------+
  182. ; Location ; ; ; dmactive ; LCCOMB_X53_Y4_N20 ; QSF Assignment ;
  183. ; Location ; ; ; ext_dma_DMACBREQ[0] ; LCCOMB_X52_Y4_N0 ; QSF Assignment ;
  184. ; Location ; ; ; ext_dma_DMACBREQ[1] ; LCCOMB_X52_Y4_N2 ; QSF Assignment ;
  185. ; Location ; ; ; ext_dma_DMACBREQ[2] ; LCCOMB_X52_Y4_N4 ; QSF Assignment ;
  186. ; Location ; ; ; ext_dma_DMACBREQ[3] ; LCCOMB_X52_Y4_N6 ; QSF Assignment ;
  187. ; Location ; ; ; ext_dma_DMACCLR[0] ; LCCOMB_X54_Y4_N12 ; QSF Assignment ;
  188. ; Location ; ; ; ext_dma_DMACCLR[1] ; LCCOMB_X54_Y4_N14 ; QSF Assignment ;
  189. ; Location ; ; ; ext_dma_DMACCLR[2] ; LCCOMB_X54_Y4_N16 ; QSF Assignment ;
  190. ; Location ; ; ; ext_dma_DMACCLR[3] ; LCCOMB_X54_Y4_N18 ; QSF Assignment ;
  191. ; Location ; ; ; ext_dma_DMACLBREQ[0] ; LCCOMB_X52_Y4_N8 ; QSF Assignment ;
  192. ; Location ; ; ; ext_dma_DMACLBREQ[1] ; LCCOMB_X52_Y4_N10 ; QSF Assignment ;
  193. ; Location ; ; ; ext_dma_DMACLBREQ[2] ; LCCOMB_X52_Y4_N12 ; QSF Assignment ;
  194. ; Location ; ; ; ext_dma_DMACLBREQ[3] ; LCCOMB_X52_Y4_N14 ; QSF Assignment ;
  195. ; Location ; ; ; ext_dma_DMACLSREQ[0] ; LCCOMB_X53_Y4_N8 ; QSF Assignment ;
  196. ; Location ; ; ; ext_dma_DMACLSREQ[1] ; LCCOMB_X53_Y4_N10 ; QSF Assignment ;
  197. ; Location ; ; ; ext_dma_DMACLSREQ[2] ; LCCOMB_X53_Y4_N12 ; QSF Assignment ;
  198. ; Location ; ; ; ext_dma_DMACLSREQ[3] ; LCCOMB_X53_Y4_N14 ; QSF Assignment ;
  199. ; Location ; ; ; ext_dma_DMACSREQ[0] ; LCCOMB_X53_Y4_N0 ; QSF Assignment ;
  200. ; Location ; ; ; ext_dma_DMACSREQ[1] ; LCCOMB_X53_Y4_N2 ; QSF Assignment ;
  201. ; Location ; ; ; ext_dma_DMACSREQ[2] ; LCCOMB_X53_Y4_N4 ; QSF Assignment ;
  202. ; Location ; ; ; ext_dma_DMACSREQ[3] ; LCCOMB_X53_Y4_N6 ; QSF Assignment ;
  203. ; Location ; ; ; ext_dma_DMACTC[0] ; LCCOMB_X54_Y4_N20 ; QSF Assignment ;
  204. ; Location ; ; ; ext_dma_DMACTC[1] ; LCCOMB_X54_Y4_N22 ; QSF Assignment ;
  205. ; Location ; ; ; ext_dma_DMACTC[2] ; LCCOMB_X54_Y4_N24 ; QSF Assignment ;
  206. ; Location ; ; ; ext_dma_DMACTC[3] ; LCCOMB_X54_Y4_N26 ; QSF Assignment ;
  207. ; Location ; ; ; ext_int[0] ; LCCOMB_X51_Y4_N2 ; QSF Assignment ;
  208. ; Location ; ; ; ext_int[1] ; LCCOMB_X51_Y4_N4 ; QSF Assignment ;
  209. ; Location ; ; ; ext_int[2] ; LCCOMB_X51_Y4_N6 ; QSF Assignment ;
  210. ; Location ; ; ; ext_int[3] ; LCCOMB_X51_Y4_N8 ; QSF Assignment ;
  211. ; Location ; ; ; ext_int[4] ; LCCOMB_X51_Y4_N10 ; QSF Assignment ;
  212. ; Location ; ; ; ext_int[5] ; LCCOMB_X51_Y4_N12 ; QSF Assignment ;
  213. ; Location ; ; ; ext_int[6] ; LCCOMB_X51_Y4_N14 ; QSF Assignment ;
  214. ; Location ; ; ; ext_int[7] ; LCCOMB_X51_Y4_N16 ; QSF Assignment ;
  215. ; Location ; ; ; ext_resetn ; LCCOMB_X51_Y4_N0 ; QSF Assignment ;
  216. ; Location ; ; ; gpio0_io_out_data[1] ; LCCOMB_X57_Y7_N14 ; QSF Assignment ;
  217. ; Location ; ; ; gpio0_io_out_data[2] ; LCCOMB_X57_Y7_N16 ; QSF Assignment ;
  218. ; Location ; ; ; gpio0_io_out_data[3] ; LCCOMB_X57_Y7_N18 ; QSF Assignment ;
  219. ; Location ; ; ; gpio0_io_out_data[4] ; LCCOMB_X57_Y7_N20 ; QSF Assignment ;
  220. ; Location ; ; ; gpio0_io_out_data[5] ; LCCOMB_X57_Y7_N22 ; QSF Assignment ;
  221. ; Location ; ; ; gpio0_io_out_data[6] ; LCCOMB_X57_Y7_N24 ; QSF Assignment ;
  222. ; Location ; ; ; gpio0_io_out_data[7] ; LCCOMB_X57_Y7_N26 ; QSF Assignment ;
  223. ; Location ; ; ; gpio0_io_out_en[1] ; LCCOMB_X57_Y7_N30 ; QSF Assignment ;
  224. ; Location ; ; ; gpio0_io_out_en[2] ; LCCOMB_X58_Y7_N0 ; QSF Assignment ;
  225. ; Location ; ; ; gpio0_io_out_en[3] ; LCCOMB_X58_Y7_N2 ; QSF Assignment ;
  226. ; Location ; ; ; gpio0_io_out_en[4] ; LCCOMB_X57_Y6_N0 ; QSF Assignment ;
  227. ; Location ; ; ; gpio0_io_out_en[5] ; LCCOMB_X57_Y6_N2 ; QSF Assignment ;
  228. ; Location ; ; ; gpio0_io_out_en[6] ; LCCOMB_X57_Y6_N4 ; QSF Assignment ;
  229. ; Location ; ; ; gpio0_io_out_en[7] ; LCCOMB_X57_Y6_N6 ; QSF Assignment ;
  230. ; Location ; ; ; gpio1_io_in[0] ; LCCOMB_X56_Y5_N16 ; QSF Assignment ;
  231. ; Location ; ; ; gpio1_io_in[1] ; LCCOMB_X56_Y5_N18 ; QSF Assignment ;
  232. ; Location ; ; ; gpio1_io_in[2] ; LCCOMB_X56_Y5_N20 ; QSF Assignment ;
  233. ; Location ; ; ; gpio1_io_in[3] ; LCCOMB_X56_Y5_N22 ; QSF Assignment ;
  234. ; Location ; ; ; gpio1_io_in[4] ; LCCOMB_X56_Y5_N24 ; QSF Assignment ;
  235. ; Location ; ; ; gpio1_io_in[5] ; LCCOMB_X56_Y5_N26 ; QSF Assignment ;
  236. ; Location ; ; ; gpio1_io_in[6] ; LCCOMB_X56_Y5_N28 ; QSF Assignment ;
  237. ; Location ; ; ; gpio1_io_in[7] ; LCCOMB_X56_Y5_N30 ; QSF Assignment ;
  238. ; Location ; ; ; gpio1_io_out_data[0] ; LCCOMB_X57_Y6_N8 ; QSF Assignment ;
  239. ; Location ; ; ; gpio1_io_out_data[1] ; LCCOMB_X57_Y6_N10 ; QSF Assignment ;
  240. ; Location ; ; ; gpio1_io_out_data[2] ; LCCOMB_X57_Y6_N12 ; QSF Assignment ;
  241. ; Location ; ; ; gpio1_io_out_data[3] ; LCCOMB_X57_Y6_N14 ; QSF Assignment ;
  242. ; Location ; ; ; gpio1_io_out_data[4] ; LCCOMB_X57_Y6_N16 ; QSF Assignment ;
  243. ; Location ; ; ; gpio1_io_out_data[5] ; LCCOMB_X57_Y6_N18 ; QSF Assignment ;
  244. ; Location ; ; ; gpio1_io_out_data[6] ; LCCOMB_X57_Y6_N20 ; QSF Assignment ;
  245. ; Location ; ; ; gpio1_io_out_data[7] ; LCCOMB_X57_Y6_N22 ; QSF Assignment ;
  246. ; Location ; ; ; gpio1_io_out_en[0] ; LCCOMB_X57_Y6_N24 ; QSF Assignment ;
  247. ; Location ; ; ; gpio1_io_out_en[1] ; LCCOMB_X57_Y6_N26 ; QSF Assignment ;
  248. ; Location ; ; ; gpio1_io_out_en[2] ; LCCOMB_X57_Y6_N28 ; QSF Assignment ;
  249. ; Location ; ; ; gpio1_io_out_en[3] ; LCCOMB_X57_Y6_N30 ; QSF Assignment ;
  250. ; Location ; ; ; gpio1_io_out_en[4] ; LCCOMB_X58_Y6_N0 ; QSF Assignment ;
  251. ; Location ; ; ; gpio1_io_out_en[5] ; LCCOMB_X58_Y6_N2 ; QSF Assignment ;
  252. ; Location ; ; ; gpio1_io_out_en[6] ; LCCOMB_X58_Y6_N4 ; QSF Assignment ;
  253. ; Location ; ; ; gpio1_io_out_en[7] ; LCCOMB_X58_Y6_N6 ; QSF Assignment ;
  254. ; Location ; ; ; gpio2_io_in[0] ; LCCOMB_X43_Y4_N0 ; QSF Assignment ;
  255. ; Location ; ; ; gpio2_io_in[1] ; LCCOMB_X43_Y4_N2 ; QSF Assignment ;
  256. ; Location ; ; ; gpio2_io_in[2] ; LCCOMB_X43_Y4_N4 ; QSF Assignment ;
  257. ; Location ; ; ; gpio2_io_in[3] ; LCCOMB_X43_Y4_N6 ; QSF Assignment ;
  258. ; Location ; ; ; gpio2_io_in[4] ; LCCOMB_X43_Y4_N8 ; QSF Assignment ;
  259. ; Location ; ; ; gpio2_io_in[5] ; LCCOMB_X43_Y4_N10 ; QSF Assignment ;
  260. ; Location ; ; ; gpio2_io_in[6] ; LCCOMB_X43_Y4_N12 ; QSF Assignment ;
  261. ; Location ; ; ; gpio2_io_in[7] ; LCCOMB_X43_Y4_N14 ; QSF Assignment ;
  262. ; Location ; ; ; gpio2_io_out_data[0] ; LCCOMB_X57_Y5_N16 ; QSF Assignment ;
  263. ; Location ; ; ; gpio2_io_out_data[1] ; LCCOMB_X57_Y5_N18 ; QSF Assignment ;
  264. ; Location ; ; ; gpio2_io_out_data[2] ; LCCOMB_X57_Y5_N20 ; QSF Assignment ;
  265. ; Location ; ; ; gpio2_io_out_data[3] ; LCCOMB_X57_Y5_N22 ; QSF Assignment ;
  266. ; Location ; ; ; gpio2_io_out_data[4] ; LCCOMB_X57_Y5_N24 ; QSF Assignment ;
  267. ; Location ; ; ; gpio2_io_out_data[5] ; LCCOMB_X57_Y5_N26 ; QSF Assignment ;
  268. ; Location ; ; ; gpio2_io_out_data[6] ; LCCOMB_X57_Y5_N28 ; QSF Assignment ;
  269. ; Location ; ; ; gpio2_io_out_data[7] ; LCCOMB_X57_Y5_N30 ; QSF Assignment ;
  270. ; Location ; ; ; gpio2_io_out_en[0] ; LCCOMB_X58_Y5_N0 ; QSF Assignment ;
  271. ; Location ; ; ; gpio2_io_out_en[1] ; LCCOMB_X58_Y5_N2 ; QSF Assignment ;
  272. ; Location ; ; ; gpio2_io_out_en[2] ; LCCOMB_X58_Y5_N4 ; QSF Assignment ;
  273. ; Location ; ; ; gpio2_io_out_en[3] ; LCCOMB_X43_Y4_N16 ; QSF Assignment ;
  274. ; Location ; ; ; gpio2_io_out_en[4] ; LCCOMB_X43_Y4_N18 ; QSF Assignment ;
  275. ; Location ; ; ; gpio2_io_out_en[5] ; LCCOMB_X43_Y4_N20 ; QSF Assignment ;
  276. ; Location ; ; ; gpio2_io_out_en[6] ; LCCOMB_X43_Y4_N22 ; QSF Assignment ;
  277. ; Location ; ; ; gpio2_io_out_en[7] ; LCCOMB_X43_Y4_N24 ; QSF Assignment ;
  278. ; Location ; ; ; gpio3_io_in[0] ; LCCOMB_X44_Y4_N0 ; QSF Assignment ;
  279. ; Location ; ; ; gpio3_io_in[1] ; LCCOMB_X44_Y4_N2 ; QSF Assignment ;
  280. ; Location ; ; ; gpio3_io_in[2] ; LCCOMB_X44_Y4_N4 ; QSF Assignment ;
  281. ; Location ; ; ; gpio3_io_in[3] ; LCCOMB_X44_Y4_N6 ; QSF Assignment ;
  282. ; Location ; ; ; gpio3_io_in[4] ; LCCOMB_X44_Y4_N8 ; QSF Assignment ;
  283. ; Location ; ; ; gpio3_io_in[5] ; LCCOMB_X44_Y4_N10 ; QSF Assignment ;
  284. ; Location ; ; ; gpio3_io_in[6] ; LCCOMB_X44_Y4_N12 ; QSF Assignment ;
  285. ; Location ; ; ; gpio3_io_in[7] ; LCCOMB_X44_Y4_N14 ; QSF Assignment ;
  286. ; Location ; ; ; gpio3_io_out_data[0] ; LCCOMB_X43_Y4_N26 ; QSF Assignment ;
  287. ; Location ; ; ; gpio3_io_out_data[1] ; LCCOMB_X43_Y4_N28 ; QSF Assignment ;
  288. ; Location ; ; ; gpio3_io_out_data[2] ; LCCOMB_X43_Y4_N30 ; QSF Assignment ;
  289. ; Location ; ; ; gpio3_io_out_data[3] ; LCCOMB_X43_Y3_N0 ; QSF Assignment ;
  290. ; Location ; ; ; gpio3_io_out_data[4] ; LCCOMB_X43_Y3_N2 ; QSF Assignment ;
  291. ; Location ; ; ; gpio3_io_out_data[5] ; LCCOMB_X43_Y3_N4 ; QSF Assignment ;
  292. ; Location ; ; ; gpio3_io_out_data[6] ; LCCOMB_X43_Y3_N6 ; QSF Assignment ;
  293. ; Location ; ; ; gpio3_io_out_data[7] ; LCCOMB_X44_Y4_N16 ; QSF Assignment ;
  294. ; Location ; ; ; gpio3_io_out_en[0] ; LCCOMB_X44_Y4_N18 ; QSF Assignment ;
  295. ; Location ; ; ; gpio3_io_out_en[1] ; LCCOMB_X44_Y4_N20 ; QSF Assignment ;
  296. ; Location ; ; ; gpio3_io_out_en[2] ; LCCOMB_X44_Y4_N22 ; QSF Assignment ;
  297. ; Location ; ; ; gpio3_io_out_en[3] ; LCCOMB_X44_Y4_N24 ; QSF Assignment ;
  298. ; Location ; ; ; gpio3_io_out_en[4] ; LCCOMB_X44_Y4_N26 ; QSF Assignment ;
  299. ; Location ; ; ; gpio3_io_out_en[5] ; LCCOMB_X44_Y4_N28 ; QSF Assignment ;
  300. ; Location ; ; ; gpio3_io_out_en[6] ; LCCOMB_X44_Y4_N30 ; QSF Assignment ;
  301. ; Location ; ; ; gpio3_io_out_en[7] ; LCCOMB_X44_Y3_N0 ; QSF Assignment ;
  302. ; Location ; ; ; gpio4_io_out_data[0] ; LCCOMB_X44_Y3_N2 ; QSF Assignment ;
  303. ; Location ; ; ; gpio4_io_out_data[3] ; LCCOMB_X45_Y4_N16 ; QSF Assignment ;
  304. ; Location ; ; ; gpio4_io_out_data[4] ; LCCOMB_X45_Y4_N18 ; QSF Assignment ;
  305. ; Location ; ; ; gpio4_io_out_data[7] ; LCCOMB_X45_Y4_N24 ; QSF Assignment ;
  306. ; Location ; ; ; gpio4_io_out_en[0] ; LCCOMB_X45_Y4_N26 ; QSF Assignment ;
  307. ; Location ; ; ; gpio4_io_out_en[3] ; LCCOMB_X45_Y3_N0 ; QSF Assignment ;
  308. ; Location ; ; ; gpio4_io_out_en[4] ; LCCOMB_X45_Y3_N2 ; QSF Assignment ;
  309. ; Location ; ; ; gpio4_io_out_en[7] ; LCCOMB_X46_Y4_N16 ; QSF Assignment ;
  310. ; Location ; ; ; gpio5_io_in[0] ; LCCOMB_X46_Y4_N0 ; QSF Assignment ;
  311. ; Location ; ; ; gpio5_io_in[1] ; LCCOMB_X46_Y4_N2 ; QSF Assignment ;
  312. ; Location ; ; ; gpio5_io_in[2] ; LCCOMB_X46_Y4_N4 ; QSF Assignment ;
  313. ; Location ; ; ; gpio5_io_in[3] ; LCCOMB_X46_Y4_N6 ; QSF Assignment ;
  314. ; Location ; ; ; gpio5_io_in[4] ; LCCOMB_X46_Y4_N8 ; QSF Assignment ;
  315. ; Location ; ; ; gpio5_io_in[5] ; LCCOMB_X46_Y4_N10 ; QSF Assignment ;
  316. ; Location ; ; ; gpio5_io_in[6] ; LCCOMB_X46_Y4_N12 ; QSF Assignment ;
  317. ; Location ; ; ; gpio5_io_in[7] ; LCCOMB_X46_Y4_N14 ; QSF Assignment ;
  318. ; Location ; ; ; gpio5_io_out_data[0] ; LCCOMB_X46_Y4_N18 ; QSF Assignment ;
  319. ; Location ; ; ; gpio5_io_out_data[1] ; LCCOMB_X46_Y4_N20 ; QSF Assignment ;
  320. ; Location ; ; ; gpio5_io_out_data[2] ; LCCOMB_X46_Y4_N22 ; QSF Assignment ;
  321. ; Location ; ; ; gpio5_io_out_data[3] ; LCCOMB_X46_Y4_N24 ; QSF Assignment ;
  322. ; Location ; ; ; gpio5_io_out_data[4] ; LCCOMB_X46_Y4_N26 ; QSF Assignment ;
  323. ; Location ; ; ; gpio5_io_out_data[5] ; LCCOMB_X46_Y4_N28 ; QSF Assignment ;
  324. ; Location ; ; ; gpio5_io_out_data[6] ; LCCOMB_X46_Y4_N30 ; QSF Assignment ;
  325. ; Location ; ; ; gpio5_io_out_data[7] ; LCCOMB_X46_Y3_N0 ; QSF Assignment ;
  326. ; Location ; ; ; gpio5_io_out_en[0] ; LCCOMB_X46_Y3_N2 ; QSF Assignment ;
  327. ; Location ; ; ; gpio5_io_out_en[1] ; LCCOMB_X46_Y3_N4 ; QSF Assignment ;
  328. ; Location ; ; ; gpio5_io_out_en[2] ; LCCOMB_X46_Y3_N6 ; QSF Assignment ;
  329. ; Location ; ; ; gpio5_io_out_en[3] ; LCCOMB_X47_Y4_N16 ; QSF Assignment ;
  330. ; Location ; ; ; gpio5_io_out_en[4] ; LCCOMB_X47_Y4_N18 ; QSF Assignment ;
  331. ; Location ; ; ; gpio5_io_out_en[5] ; LCCOMB_X47_Y4_N20 ; QSF Assignment ;
  332. ; Location ; ; ; gpio5_io_out_en[6] ; LCCOMB_X47_Y4_N22 ; QSF Assignment ;
  333. ; Location ; ; ; gpio5_io_out_en[7] ; LCCOMB_X47_Y4_N24 ; QSF Assignment ;
  334. ; Location ; ; ; gpio6_io_out_data[0] ; LCCOMB_X47_Y4_N26 ; QSF Assignment ;
  335. ; Location ; ; ; gpio6_io_out_data[1] ; LCCOMB_X47_Y4_N28 ; QSF Assignment ;
  336. ; Location ; ; ; gpio6_io_out_data[2] ; LCCOMB_X47_Y4_N30 ; QSF Assignment ;
  337. ; Location ; ; ; gpio6_io_out_data[3] ; LCCOMB_X47_Y3_N0 ; QSF Assignment ;
  338. ; Location ; ; ; gpio6_io_out_data[4] ; LCCOMB_X47_Y3_N2 ; QSF Assignment ;
  339. ; Location ; ; ; gpio6_io_out_data[5] ; LCCOMB_X47_Y3_N4 ; QSF Assignment ;
  340. ; Location ; ; ; gpio6_io_out_data[6] ; LCCOMB_X48_Y4_N16 ; QSF Assignment ;
  341. ; Location ; ; ; gpio6_io_out_data[7] ; LCCOMB_X48_Y4_N18 ; QSF Assignment ;
  342. ; Location ; ; ; gpio6_io_out_en[0] ; LCCOMB_X48_Y4_N20 ; QSF Assignment ;
  343. ; Location ; ; ; gpio6_io_out_en[1] ; LCCOMB_X48_Y4_N22 ; QSF Assignment ;
  344. ; Location ; ; ; gpio6_io_out_en[2] ; LCCOMB_X48_Y4_N24 ; QSF Assignment ;
  345. ; Location ; ; ; gpio6_io_out_en[3] ; LCCOMB_X48_Y4_N26 ; QSF Assignment ;
  346. ; Location ; ; ; gpio6_io_out_en[4] ; LCCOMB_X48_Y4_N28 ; QSF Assignment ;
  347. ; Location ; ; ; gpio6_io_out_en[5] ; LCCOMB_X48_Y4_N30 ; QSF Assignment ;
  348. ; Location ; ; ; gpio6_io_out_en[6] ; LCCOMB_X48_Y3_N0 ; QSF Assignment ;
  349. ; Location ; ; ; gpio6_io_out_en[7] ; LCCOMB_X48_Y3_N2 ; QSF Assignment ;
  350. ; Location ; ; ; gpio7_io_in[0] ; LCCOMB_X48_Y4_N0 ; QSF Assignment ;
  351. ; Location ; ; ; gpio7_io_in[1] ; LCCOMB_X48_Y4_N2 ; QSF Assignment ;
  352. ; Location ; ; ; gpio7_io_in[2] ; LCCOMB_X48_Y4_N4 ; QSF Assignment ;
  353. ; Location ; ; ; gpio7_io_in[3] ; LCCOMB_X48_Y4_N6 ; QSF Assignment ;
  354. ; Location ; ; ; gpio7_io_in[4] ; LCCOMB_X48_Y4_N8 ; QSF Assignment ;
  355. ; Location ; ; ; gpio7_io_in[5] ; LCCOMB_X48_Y4_N10 ; QSF Assignment ;
  356. ; Location ; ; ; gpio7_io_in[6] ; LCCOMB_X48_Y4_N12 ; QSF Assignment ;
  357. ; Location ; ; ; gpio7_io_in[7] ; LCCOMB_X48_Y4_N14 ; QSF Assignment ;
  358. ; Location ; ; ; gpio7_io_out_data[0] ; LCCOMB_X48_Y3_N4 ; QSF Assignment ;
  359. ; Location ; ; ; gpio7_io_out_data[1] ; LCCOMB_X49_Y4_N16 ; QSF Assignment ;
  360. ; Location ; ; ; gpio7_io_out_data[2] ; LCCOMB_X49_Y4_N18 ; QSF Assignment ;
  361. ; Location ; ; ; gpio7_io_out_data[3] ; LCCOMB_X49_Y4_N20 ; QSF Assignment ;
  362. ; Location ; ; ; gpio7_io_out_data[4] ; LCCOMB_X49_Y4_N22 ; QSF Assignment ;
  363. ; Location ; ; ; gpio7_io_out_data[5] ; LCCOMB_X49_Y4_N24 ; QSF Assignment ;
  364. ; Location ; ; ; gpio7_io_out_data[7] ; LCCOMB_X49_Y4_N28 ; QSF Assignment ;
  365. ; Location ; ; ; gpio7_io_out_en[0] ; LCCOMB_X49_Y4_N30 ; QSF Assignment ;
  366. ; Location ; ; ; gpio7_io_out_en[1] ; LCCOMB_X49_Y3_N0 ; QSF Assignment ;
  367. ; Location ; ; ; gpio7_io_out_en[2] ; LCCOMB_X49_Y3_N2 ; QSF Assignment ;
  368. ; Location ; ; ; gpio7_io_out_en[3] ; LCCOMB_X49_Y3_N4 ; QSF Assignment ;
  369. ; Location ; ; ; gpio7_io_out_en[4] ; LCCOMB_X50_Y4_N16 ; QSF Assignment ;
  370. ; Location ; ; ; gpio7_io_out_en[5] ; LCCOMB_X50_Y4_N18 ; QSF Assignment ;
  371. ; Location ; ; ; gpio7_io_out_en[7] ; LCCOMB_X50_Y4_N22 ; QSF Assignment ;
  372. ; Location ; ; ; gpio8_io_in[0] ; LCCOMB_X49_Y4_N0 ; QSF Assignment ;
  373. ; Location ; ; ; gpio8_io_in[1] ; LCCOMB_X49_Y4_N2 ; QSF Assignment ;
  374. ; Location ; ; ; gpio8_io_in[2] ; LCCOMB_X49_Y4_N4 ; QSF Assignment ;
  375. ; Location ; ; ; gpio8_io_in[3] ; LCCOMB_X49_Y4_N6 ; QSF Assignment ;
  376. ; Location ; ; ; gpio8_io_in[4] ; LCCOMB_X49_Y4_N8 ; QSF Assignment ;
  377. ; Location ; ; ; gpio8_io_in[5] ; LCCOMB_X49_Y4_N10 ; QSF Assignment ;
  378. ; Location ; ; ; gpio8_io_in[6] ; LCCOMB_X49_Y4_N12 ; QSF Assignment ;
  379. ; Location ; ; ; gpio8_io_in[7] ; LCCOMB_X49_Y4_N14 ; QSF Assignment ;
  380. ; Location ; ; ; gpio8_io_out_data[1] ; LCCOMB_X50_Y4_N26 ; QSF Assignment ;
  381. ; Location ; ; ; gpio8_io_out_data[2] ; LCCOMB_X50_Y4_N28 ; QSF Assignment ;
  382. ; Location ; ; ; gpio8_io_out_data[3] ; LCCOMB_X50_Y4_N30 ; QSF Assignment ;
  383. ; Location ; ; ; gpio8_io_out_data[4] ; LCCOMB_X50_Y3_N0 ; QSF Assignment ;
  384. ; Location ; ; ; gpio8_io_out_data[5] ; LCCOMB_X50_Y3_N2 ; QSF Assignment ;
  385. ; Location ; ; ; gpio8_io_out_data[6] ; LCCOMB_X50_Y3_N4 ; QSF Assignment ;
  386. ; Location ; ; ; gpio8_io_out_data[7] ; LCCOMB_X50_Y3_N6 ; QSF Assignment ;
  387. ; Location ; ; ; gpio8_io_out_en[1] ; LCCOMB_X51_Y4_N20 ; QSF Assignment ;
  388. ; Location ; ; ; gpio8_io_out_en[2] ; LCCOMB_X51_Y4_N22 ; QSF Assignment ;
  389. ; Location ; ; ; gpio8_io_out_en[3] ; LCCOMB_X51_Y4_N24 ; QSF Assignment ;
  390. ; Location ; ; ; gpio8_io_out_en[4] ; LCCOMB_X51_Y4_N26 ; QSF Assignment ;
  391. ; Location ; ; ; gpio8_io_out_en[5] ; LCCOMB_X51_Y4_N28 ; QSF Assignment ;
  392. ; Location ; ; ; gpio8_io_out_en[6] ; LCCOMB_X51_Y4_N30 ; QSF Assignment ;
  393. ; Location ; ; ; gpio8_io_out_en[7] ; LCCOMB_X51_Y3_N0 ; QSF Assignment ;
  394. ; Location ; ; ; gpio9_io_in[0] ; LCCOMB_X50_Y4_N0 ; QSF Assignment ;
  395. ; Location ; ; ; gpio9_io_in[1] ; LCCOMB_X50_Y4_N2 ; QSF Assignment ;
  396. ; Location ; ; ; gpio9_io_in[2] ; LCCOMB_X50_Y4_N4 ; QSF Assignment ;
  397. ; Location ; ; ; gpio9_io_in[3] ; LCCOMB_X50_Y4_N6 ; QSF Assignment ;
  398. ; Location ; ; ; gpio9_io_in[4] ; LCCOMB_X50_Y4_N8 ; QSF Assignment ;
  399. ; Location ; ; ; gpio9_io_in[5] ; LCCOMB_X50_Y4_N10 ; QSF Assignment ;
  400. ; Location ; ; ; gpio9_io_in[6] ; LCCOMB_X50_Y4_N12 ; QSF Assignment ;
  401. ; Location ; ; ; gpio9_io_in[7] ; LCCOMB_X50_Y4_N14 ; QSF Assignment ;
  402. ; Location ; ; ; gpio9_io_out_data[0] ; LCCOMB_X51_Y3_N2 ; QSF Assignment ;
  403. ; Location ; ; ; gpio9_io_out_data[1] ; LCCOMB_X51_Y3_N4 ; QSF Assignment ;
  404. ; Location ; ; ; gpio9_io_out_data[2] ; LCCOMB_X51_Y3_N6 ; QSF Assignment ;
  405. ; Location ; ; ; gpio9_io_out_data[3] ; LCCOMB_X52_Y4_N16 ; QSF Assignment ;
  406. ; Location ; ; ; gpio9_io_out_data[4] ; LCCOMB_X52_Y4_N18 ; QSF Assignment ;
  407. ; Location ; ; ; gpio9_io_out_data[5] ; LCCOMB_X52_Y4_N20 ; QSF Assignment ;
  408. ; Location ; ; ; gpio9_io_out_data[6] ; LCCOMB_X52_Y4_N22 ; QSF Assignment ;
  409. ; Location ; ; ; gpio9_io_out_data[7] ; LCCOMB_X52_Y4_N24 ; QSF Assignment ;
  410. ; Location ; ; ; gpio9_io_out_en[0] ; LCCOMB_X52_Y4_N26 ; QSF Assignment ;
  411. ; Location ; ; ; gpio9_io_out_en[1] ; LCCOMB_X52_Y4_N28 ; QSF Assignment ;
  412. ; Location ; ; ; gpio9_io_out_en[2] ; LCCOMB_X52_Y4_N30 ; QSF Assignment ;
  413. ; Location ; ; ; gpio9_io_out_en[3] ; LCCOMB_X52_Y3_N0 ; QSF Assignment ;
  414. ; Location ; ; ; gpio9_io_out_en[4] ; LCCOMB_X52_Y3_N2 ; QSF Assignment ;
  415. ; Location ; ; ; gpio9_io_out_en[5] ; LCCOMB_X52_Y3_N4 ; QSF Assignment ;
  416. ; Location ; ; ; gpio9_io_out_en[6] ; LCCOMB_X53_Y4_N16 ; QSF Assignment ;
  417. ; Location ; ; ; gpio9_io_out_en[7] ; LCCOMB_X53_Y4_N18 ; QSF Assignment ;
  418. ; Location ; ; ; local_int[0] ; LCCOMB_X54_Y4_N0 ; QSF Assignment ;
  419. ; Location ; ; ; local_int[1] ; LCCOMB_X54_Y4_N2 ; QSF Assignment ;
  420. ; Location ; ; ; local_int[2] ; LCCOMB_X54_Y4_N4 ; QSF Assignment ;
  421. ; Location ; ; ; local_int[3] ; LCCOMB_X54_Y4_N6 ; QSF Assignment ;
  422. ; Location ; ; ; mem_ahb_haddr[0] ; LCCOMB_X57_Y12_N18 ; QSF Assignment ;
  423. ; Location ; ; ; mem_ahb_haddr[10] ; LCCOMB_X57_Y11_N6 ; QSF Assignment ;
  424. ; Location ; ; ; mem_ahb_haddr[11] ; LCCOMB_X57_Y11_N8 ; QSF Assignment ;
  425. ; Location ; ; ; mem_ahb_haddr[12] ; LCCOMB_X57_Y11_N10 ; QSF Assignment ;
  426. ; Location ; ; ; mem_ahb_haddr[13] ; LCCOMB_X57_Y11_N12 ; QSF Assignment ;
  427. ; Location ; ; ; mem_ahb_haddr[14] ; LCCOMB_X57_Y11_N14 ; QSF Assignment ;
  428. ; Location ; ; ; mem_ahb_haddr[15] ; LCCOMB_X57_Y11_N16 ; QSF Assignment ;
  429. ; Location ; ; ; mem_ahb_haddr[16] ; LCCOMB_X57_Y11_N18 ; QSF Assignment ;
  430. ; Location ; ; ; mem_ahb_haddr[17] ; LCCOMB_X57_Y11_N20 ; QSF Assignment ;
  431. ; Location ; ; ; mem_ahb_haddr[18] ; LCCOMB_X57_Y11_N22 ; QSF Assignment ;
  432. ; Location ; ; ; mem_ahb_haddr[19] ; LCCOMB_X57_Y11_N24 ; QSF Assignment ;
  433. ; Location ; ; ; mem_ahb_haddr[1] ; LCCOMB_X57_Y12_N20 ; QSF Assignment ;
  434. ; Location ; ; ; mem_ahb_haddr[20] ; LCCOMB_X57_Y11_N26 ; QSF Assignment ;
  435. ; Location ; ; ; mem_ahb_haddr[21] ; LCCOMB_X57_Y11_N28 ; QSF Assignment ;
  436. ; Location ; ; ; mem_ahb_haddr[22] ; LCCOMB_X57_Y11_N30 ; QSF Assignment ;
  437. ; Location ; ; ; mem_ahb_haddr[23] ; LCCOMB_X58_Y11_N0 ; QSF Assignment ;
  438. ; Location ; ; ; mem_ahb_haddr[24] ; LCCOMB_X58_Y11_N2 ; QSF Assignment ;
  439. ; Location ; ; ; mem_ahb_haddr[25] ; LCCOMB_X58_Y11_N4 ; QSF Assignment ;
  440. ; Location ; ; ; mem_ahb_haddr[26] ; LCCOMB_X58_Y11_N6 ; QSF Assignment ;
  441. ; Location ; ; ; mem_ahb_haddr[27] ; LCCOMB_X58_Y11_N8 ; QSF Assignment ;
  442. ; Location ; ; ; mem_ahb_haddr[28] ; LCCOMB_X58_Y11_N10 ; QSF Assignment ;
  443. ; Location ; ; ; mem_ahb_haddr[29] ; LCCOMB_X58_Y11_N12 ; QSF Assignment ;
  444. ; Location ; ; ; mem_ahb_haddr[2] ; LCCOMB_X57_Y12_N22 ; QSF Assignment ;
  445. ; Location ; ; ; mem_ahb_haddr[30] ; LCCOMB_X56_Y10_N30 ; QSF Assignment ;
  446. ; Location ; ; ; mem_ahb_haddr[31] ; LCCOMB_X57_Y10_N0 ; QSF Assignment ;
  447. ; Location ; ; ; mem_ahb_haddr[3] ; LCCOMB_X57_Y12_N24 ; QSF Assignment ;
  448. ; Location ; ; ; mem_ahb_haddr[4] ; LCCOMB_X57_Y12_N26 ; QSF Assignment ;
  449. ; Location ; ; ; mem_ahb_haddr[5] ; LCCOMB_X57_Y12_N28 ; QSF Assignment ;
  450. ; Location ; ; ; mem_ahb_haddr[6] ; LCCOMB_X57_Y12_N30 ; QSF Assignment ;
  451. ; Location ; ; ; mem_ahb_haddr[7] ; LCCOMB_X58_Y12_N0 ; QSF Assignment ;
  452. ; Location ; ; ; mem_ahb_haddr[8] ; LCCOMB_X58_Y12_N2 ; QSF Assignment ;
  453. ; Location ; ; ; mem_ahb_haddr[9] ; LCCOMB_X58_Y12_N4 ; QSF Assignment ;
  454. ; Location ; ; ; mem_ahb_hburst[0] ; LCCOMB_X57_Y12_N10 ; QSF Assignment ;
  455. ; Location ; ; ; mem_ahb_hburst[1] ; LCCOMB_X57_Y12_N12 ; QSF Assignment ;
  456. ; Location ; ; ; mem_ahb_hburst[2] ; LCCOMB_X57_Y12_N14 ; QSF Assignment ;
  457. ; Location ; ; ; mem_ahb_hrdata[0] ; LCCOMB_X56_Y12_N4 ; QSF Assignment ;
  458. ; Location ; ; ; mem_ahb_hrdata[10] ; LCCOMB_X56_Y12_N24 ; QSF Assignment ;
  459. ; Location ; ; ; mem_ahb_hrdata[11] ; LCCOMB_X56_Y12_N26 ; QSF Assignment ;
  460. ; Location ; ; ; mem_ahb_hrdata[12] ; LCCOMB_X56_Y12_N28 ; QSF Assignment ;
  461. ; Location ; ; ; mem_ahb_hrdata[13] ; LCCOMB_X56_Y11_N0 ; QSF Assignment ;
  462. ; Location ; ; ; mem_ahb_hrdata[14] ; LCCOMB_X56_Y11_N2 ; QSF Assignment ;
  463. ; Location ; ; ; mem_ahb_hrdata[15] ; LCCOMB_X56_Y11_N4 ; QSF Assignment ;
  464. ; Location ; ; ; mem_ahb_hrdata[16] ; LCCOMB_X56_Y11_N6 ; QSF Assignment ;
  465. ; Location ; ; ; mem_ahb_hrdata[17] ; LCCOMB_X56_Y11_N8 ; QSF Assignment ;
  466. ; Location ; ; ; mem_ahb_hrdata[18] ; LCCOMB_X56_Y11_N10 ; QSF Assignment ;
  467. ; Location ; ; ; mem_ahb_hrdata[19] ; LCCOMB_X56_Y11_N12 ; QSF Assignment ;
  468. ; Location ; ; ; mem_ahb_hrdata[1] ; LCCOMB_X56_Y12_N6 ; QSF Assignment ;
  469. ; Location ; ; ; mem_ahb_hrdata[20] ; LCCOMB_X56_Y11_N14 ; QSF Assignment ;
  470. ; Location ; ; ; mem_ahb_hrdata[21] ; LCCOMB_X56_Y11_N16 ; QSF Assignment ;
  471. ; Location ; ; ; mem_ahb_hrdata[22] ; LCCOMB_X56_Y11_N18 ; QSF Assignment ;
  472. ; Location ; ; ; mem_ahb_hrdata[23] ; LCCOMB_X56_Y11_N20 ; QSF Assignment ;
  473. ; Location ; ; ; mem_ahb_hrdata[24] ; LCCOMB_X56_Y11_N22 ; QSF Assignment ;
  474. ; Location ; ; ; mem_ahb_hrdata[25] ; LCCOMB_X56_Y11_N24 ; QSF Assignment ;
  475. ; Location ; ; ; mem_ahb_hrdata[26] ; LCCOMB_X56_Y11_N26 ; QSF Assignment ;
  476. ; Location ; ; ; mem_ahb_hrdata[27] ; LCCOMB_X56_Y11_N28 ; QSF Assignment ;
  477. ; Location ; ; ; mem_ahb_hrdata[28] ; LCCOMB_X56_Y11_N30 ; QSF Assignment ;
  478. ; Location ; ; ; mem_ahb_hrdata[29] ; LCCOMB_X57_Y11_N0 ; QSF Assignment ;
  479. ; Location ; ; ; mem_ahb_hrdata[2] ; LCCOMB_X56_Y12_N8 ; QSF Assignment ;
  480. ; Location ; ; ; mem_ahb_hrdata[30] ; LCCOMB_X57_Y11_N2 ; QSF Assignment ;
  481. ; Location ; ; ; mem_ahb_hrdata[31] ; LCCOMB_X57_Y11_N4 ; QSF Assignment ;
  482. ; Location ; ; ; mem_ahb_hrdata[3] ; LCCOMB_X56_Y12_N10 ; QSF Assignment ;
  483. ; Location ; ; ; mem_ahb_hrdata[4] ; LCCOMB_X56_Y12_N12 ; QSF Assignment ;
  484. ; Location ; ; ; mem_ahb_hrdata[5] ; LCCOMB_X56_Y12_N14 ; QSF Assignment ;
  485. ; Location ; ; ; mem_ahb_hrdata[6] ; LCCOMB_X56_Y12_N16 ; QSF Assignment ;
  486. ; Location ; ; ; mem_ahb_hrdata[7] ; LCCOMB_X56_Y12_N18 ; QSF Assignment ;
  487. ; Location ; ; ; mem_ahb_hrdata[8] ; LCCOMB_X56_Y12_N20 ; QSF Assignment ;
  488. ; Location ; ; ; mem_ahb_hrdata[9] ; LCCOMB_X56_Y12_N22 ; QSF Assignment ;
  489. ; Location ; ; ; mem_ahb_hready ; LCCOMB_X56_Y12_N30 ; QSF Assignment ;
  490. ; Location ; ; ; mem_ahb_hreadyout ; LCCOMB_X56_Y12_N0 ; QSF Assignment ;
  491. ; Location ; ; ; mem_ahb_hresp ; LCCOMB_X56_Y12_N2 ; QSF Assignment ;
  492. ; Location ; ; ; mem_ahb_hsize[0] ; LCCOMB_X57_Y12_N4 ; QSF Assignment ;
  493. ; Location ; ; ; mem_ahb_hsize[1] ; LCCOMB_X57_Y12_N6 ; QSF Assignment ;
  494. ; Location ; ; ; mem_ahb_hsize[2] ; LCCOMB_X57_Y12_N8 ; QSF Assignment ;
  495. ; Location ; ; ; mem_ahb_htrans[0] ; LCCOMB_X57_Y12_N0 ; QSF Assignment ;
  496. ; Location ; ; ; mem_ahb_htrans[1] ; LCCOMB_X57_Y12_N2 ; QSF Assignment ;
  497. ; Location ; ; ; mem_ahb_hwdata[0] ; LCCOMB_X57_Y10_N2 ; QSF Assignment ;
  498. ; Location ; ; ; mem_ahb_hwdata[10] ; LCCOMB_X57_Y10_N22 ; QSF Assignment ;
  499. ; Location ; ; ; mem_ahb_hwdata[11] ; LCCOMB_X57_Y10_N24 ; QSF Assignment ;
  500. ; Location ; ; ; mem_ahb_hwdata[12] ; LCCOMB_X57_Y10_N26 ; QSF Assignment ;
  501. ; Location ; ; ; mem_ahb_hwdata[13] ; LCCOMB_X57_Y10_N28 ; QSF Assignment ;
  502. ; Location ; ; ; mem_ahb_hwdata[14] ; LCCOMB_X57_Y10_N30 ; QSF Assignment ;
  503. ; Location ; ; ; mem_ahb_hwdata[15] ; LCCOMB_X58_Y10_N0 ; QSF Assignment ;
  504. ; Location ; ; ; mem_ahb_hwdata[16] ; LCCOMB_X58_Y10_N2 ; QSF Assignment ;
  505. ; Location ; ; ; mem_ahb_hwdata[17] ; LCCOMB_X58_Y10_N6 ; QSF Assignment ;
  506. ; Location ; ; ; mem_ahb_hwdata[18] ; LCCOMB_X56_Y9_N30 ; QSF Assignment ;
  507. ; Location ; ; ; mem_ahb_hwdata[19] ; LCCOMB_X57_Y9_N0 ; QSF Assignment ;
  508. ; Location ; ; ; mem_ahb_hwdata[1] ; LCCOMB_X57_Y10_N4 ; QSF Assignment ;
  509. ; Location ; ; ; mem_ahb_hwdata[20] ; LCCOMB_X57_Y9_N2 ; QSF Assignment ;
  510. ; Location ; ; ; mem_ahb_hwdata[21] ; LCCOMB_X57_Y9_N4 ; QSF Assignment ;
  511. ; Location ; ; ; mem_ahb_hwdata[22] ; LCCOMB_X57_Y9_N6 ; QSF Assignment ;
  512. ; Location ; ; ; mem_ahb_hwdata[23] ; LCCOMB_X57_Y9_N8 ; QSF Assignment ;
  513. ; Location ; ; ; mem_ahb_hwdata[24] ; LCCOMB_X57_Y9_N10 ; QSF Assignment ;
  514. ; Location ; ; ; mem_ahb_hwdata[25] ; LCCOMB_X57_Y9_N12 ; QSF Assignment ;
  515. ; Location ; ; ; mem_ahb_hwdata[26] ; LCCOMB_X57_Y9_N14 ; QSF Assignment ;
  516. ; Location ; ; ; mem_ahb_hwdata[27] ; LCCOMB_X57_Y9_N16 ; QSF Assignment ;
  517. ; Location ; ; ; mem_ahb_hwdata[28] ; LCCOMB_X57_Y9_N18 ; QSF Assignment ;
  518. ; Location ; ; ; mem_ahb_hwdata[29] ; LCCOMB_X57_Y9_N20 ; QSF Assignment ;
  519. ; Location ; ; ; mem_ahb_hwdata[2] ; LCCOMB_X57_Y10_N6 ; QSF Assignment ;
  520. ; Location ; ; ; mem_ahb_hwdata[30] ; LCCOMB_X57_Y9_N22 ; QSF Assignment ;
  521. ; Location ; ; ; mem_ahb_hwdata[31] ; LCCOMB_X57_Y9_N24 ; QSF Assignment ;
  522. ; Location ; ; ; mem_ahb_hwdata[3] ; LCCOMB_X57_Y10_N8 ; QSF Assignment ;
  523. ; Location ; ; ; mem_ahb_hwdata[4] ; LCCOMB_X57_Y10_N10 ; QSF Assignment ;
  524. ; Location ; ; ; mem_ahb_hwdata[5] ; LCCOMB_X57_Y10_N12 ; QSF Assignment ;
  525. ; Location ; ; ; mem_ahb_hwdata[6] ; LCCOMB_X57_Y10_N14 ; QSF Assignment ;
  526. ; Location ; ; ; mem_ahb_hwdata[7] ; LCCOMB_X57_Y10_N16 ; QSF Assignment ;
  527. ; Location ; ; ; mem_ahb_hwdata[8] ; LCCOMB_X57_Y10_N18 ; QSF Assignment ;
  528. ; Location ; ; ; mem_ahb_hwdata[9] ; LCCOMB_X57_Y10_N20 ; QSF Assignment ;
  529. ; Location ; ; ; mem_ahb_hwrite ; LCCOMB_X57_Y12_N16 ; QSF Assignment ;
  530. ; Location ; ; ; resetn_out ; LCCOMB_X58_Y5_N6 ; QSF Assignment ;
  531. ; Location ; ; ; slave_ahb_haddr[0] ; LCCOMB_X56_Y10_N22 ; QSF Assignment ;
  532. ; Location ; ; ; slave_ahb_haddr[10] ; LCCOMB_X56_Y9_N12 ; QSF Assignment ;
  533. ; Location ; ; ; slave_ahb_haddr[11] ; LCCOMB_X56_Y9_N14 ; QSF Assignment ;
  534. ; Location ; ; ; slave_ahb_haddr[12] ; LCCOMB_X56_Y9_N16 ; QSF Assignment ;
  535. ; Location ; ; ; slave_ahb_haddr[13] ; LCCOMB_X56_Y9_N18 ; QSF Assignment ;
  536. ; Location ; ; ; slave_ahb_haddr[14] ; LCCOMB_X56_Y9_N20 ; QSF Assignment ;
  537. ; Location ; ; ; slave_ahb_haddr[15] ; LCCOMB_X56_Y9_N22 ; QSF Assignment ;
  538. ; Location ; ; ; slave_ahb_haddr[16] ; LCCOMB_X56_Y9_N24 ; QSF Assignment ;
  539. ; Location ; ; ; slave_ahb_haddr[17] ; LCCOMB_X56_Y9_N26 ; QSF Assignment ;
  540. ; Location ; ; ; slave_ahb_haddr[18] ; LCCOMB_X56_Y9_N28 ; QSF Assignment ;
  541. ; Location ; ; ; slave_ahb_haddr[19] ; LCCOMB_X56_Y8_N0 ; QSF Assignment ;
  542. ; Location ; ; ; slave_ahb_haddr[1] ; LCCOMB_X56_Y10_N24 ; QSF Assignment ;
  543. ; Location ; ; ; slave_ahb_haddr[20] ; LCCOMB_X56_Y8_N2 ; QSF Assignment ;
  544. ; Location ; ; ; slave_ahb_haddr[21] ; LCCOMB_X56_Y8_N4 ; QSF Assignment ;
  545. ; Location ; ; ; slave_ahb_haddr[22] ; LCCOMB_X56_Y8_N6 ; QSF Assignment ;
  546. ; Location ; ; ; slave_ahb_haddr[23] ; LCCOMB_X56_Y8_N8 ; QSF Assignment ;
  547. ; Location ; ; ; slave_ahb_haddr[24] ; LCCOMB_X56_Y8_N10 ; QSF Assignment ;
  548. ; Location ; ; ; slave_ahb_haddr[25] ; LCCOMB_X56_Y8_N12 ; QSF Assignment ;
  549. ; Location ; ; ; slave_ahb_haddr[26] ; LCCOMB_X56_Y8_N14 ; QSF Assignment ;
  550. ; Location ; ; ; slave_ahb_haddr[27] ; LCCOMB_X56_Y8_N16 ; QSF Assignment ;
  551. ; Location ; ; ; slave_ahb_haddr[28] ; LCCOMB_X56_Y8_N18 ; QSF Assignment ;
  552. ; Location ; ; ; slave_ahb_haddr[29] ; LCCOMB_X56_Y8_N20 ; QSF Assignment ;
  553. ; Location ; ; ; slave_ahb_haddr[2] ; LCCOMB_X56_Y10_N26 ; QSF Assignment ;
  554. ; Location ; ; ; slave_ahb_haddr[30] ; LCCOMB_X56_Y8_N22 ; QSF Assignment ;
  555. ; Location ; ; ; slave_ahb_haddr[31] ; LCCOMB_X56_Y8_N24 ; QSF Assignment ;
  556. ; Location ; ; ; slave_ahb_haddr[3] ; LCCOMB_X56_Y10_N28 ; QSF Assignment ;
  557. ; Location ; ; ; slave_ahb_haddr[4] ; LCCOMB_X56_Y9_N0 ; QSF Assignment ;
  558. ; Location ; ; ; slave_ahb_haddr[5] ; LCCOMB_X56_Y9_N2 ; QSF Assignment ;
  559. ; Location ; ; ; slave_ahb_haddr[6] ; LCCOMB_X56_Y9_N4 ; QSF Assignment ;
  560. ; Location ; ; ; slave_ahb_haddr[7] ; LCCOMB_X56_Y9_N6 ; QSF Assignment ;
  561. ; Location ; ; ; slave_ahb_haddr[8] ; LCCOMB_X56_Y9_N8 ; QSF Assignment ;
  562. ; Location ; ; ; slave_ahb_haddr[9] ; LCCOMB_X56_Y9_N10 ; QSF Assignment ;
  563. ; Location ; ; ; slave_ahb_hburst[0] ; LCCOMB_X56_Y10_N14 ; QSF Assignment ;
  564. ; Location ; ; ; slave_ahb_hburst[1] ; LCCOMB_X56_Y10_N16 ; QSF Assignment ;
  565. ; Location ; ; ; slave_ahb_hburst[2] ; LCCOMB_X56_Y10_N18 ; QSF Assignment ;
  566. ; Location ; ; ; slave_ahb_hrdata[0] ; LCCOMB_X57_Y9_N30 ; QSF Assignment ;
  567. ; Location ; ; ; slave_ahb_hrdata[10] ; LCCOMB_X57_Y8_N10 ; QSF Assignment ;
  568. ; Location ; ; ; slave_ahb_hrdata[11] ; LCCOMB_X57_Y8_N12 ; QSF Assignment ;
  569. ; Location ; ; ; slave_ahb_hrdata[12] ; LCCOMB_X57_Y8_N14 ; QSF Assignment ;
  570. ; Location ; ; ; slave_ahb_hrdata[13] ; LCCOMB_X57_Y8_N16 ; QSF Assignment ;
  571. ; Location ; ; ; slave_ahb_hrdata[14] ; LCCOMB_X57_Y8_N18 ; QSF Assignment ;
  572. ; Location ; ; ; slave_ahb_hrdata[15] ; LCCOMB_X57_Y8_N20 ; QSF Assignment ;
  573. ; Location ; ; ; slave_ahb_hrdata[16] ; LCCOMB_X57_Y8_N22 ; QSF Assignment ;
  574. ; Location ; ; ; slave_ahb_hrdata[17] ; LCCOMB_X57_Y8_N24 ; QSF Assignment ;
  575. ; Location ; ; ; slave_ahb_hrdata[18] ; LCCOMB_X57_Y8_N26 ; QSF Assignment ;
  576. ; Location ; ; ; slave_ahb_hrdata[19] ; LCCOMB_X57_Y8_N28 ; QSF Assignment ;
  577. ; Location ; ; ; slave_ahb_hrdata[1] ; LCCOMB_X58_Y9_N0 ; QSF Assignment ;
  578. ; Location ; ; ; slave_ahb_hrdata[20] ; LCCOMB_X57_Y8_N30 ; QSF Assignment ;
  579. ; Location ; ; ; slave_ahb_hrdata[21] ; LCCOMB_X58_Y8_N0 ; QSF Assignment ;
  580. ; Location ; ; ; slave_ahb_hrdata[22] ; LCCOMB_X58_Y8_N2 ; QSF Assignment ;
  581. ; Location ; ; ; slave_ahb_hrdata[23] ; LCCOMB_X58_Y8_N4 ; QSF Assignment ;
  582. ; Location ; ; ; slave_ahb_hrdata[24] ; LCCOMB_X56_Y7_N28 ; QSF Assignment ;
  583. ; Location ; ; ; slave_ahb_hrdata[25] ; LCCOMB_X56_Y7_N30 ; QSF Assignment ;
  584. ; Location ; ; ; slave_ahb_hrdata[26] ; LCCOMB_X57_Y7_N0 ; QSF Assignment ;
  585. ; Location ; ; ; slave_ahb_hrdata[27] ; LCCOMB_X57_Y7_N2 ; QSF Assignment ;
  586. ; Location ; ; ; slave_ahb_hrdata[28] ; LCCOMB_X57_Y7_N4 ; QSF Assignment ;
  587. ; Location ; ; ; slave_ahb_hrdata[29] ; LCCOMB_X57_Y7_N6 ; QSF Assignment ;
  588. ; Location ; ; ; slave_ahb_hrdata[2] ; LCCOMB_X58_Y9_N2 ; QSF Assignment ;
  589. ; Location ; ; ; slave_ahb_hrdata[30] ; LCCOMB_X57_Y7_N8 ; QSF Assignment ;
  590. ; Location ; ; ; slave_ahb_hrdata[31] ; LCCOMB_X57_Y7_N10 ; QSF Assignment ;
  591. ; Location ; ; ; slave_ahb_hrdata[3] ; LCCOMB_X58_Y9_N4 ; QSF Assignment ;
  592. ; Location ; ; ; slave_ahb_hrdata[4] ; LCCOMB_X56_Y8_N30 ; QSF Assignment ;
  593. ; Location ; ; ; slave_ahb_hrdata[5] ; LCCOMB_X57_Y8_N0 ; QSF Assignment ;
  594. ; Location ; ; ; slave_ahb_hrdata[6] ; LCCOMB_X57_Y8_N2 ; QSF Assignment ;
  595. ; Location ; ; ; slave_ahb_hrdata[7] ; LCCOMB_X57_Y8_N4 ; QSF Assignment ;
  596. ; Location ; ; ; slave_ahb_hrdata[8] ; LCCOMB_X57_Y8_N6 ; QSF Assignment ;
  597. ; Location ; ; ; slave_ahb_hrdata[9] ; LCCOMB_X57_Y8_N8 ; QSF Assignment ;
  598. ; Location ; ; ; slave_ahb_hready ; LCCOMB_X56_Y10_N2 ; QSF Assignment ;
  599. ; Location ; ; ; slave_ahb_hreadyout ; LCCOMB_X57_Y9_N26 ; QSF Assignment ;
  600. ; Location ; ; ; slave_ahb_hresp ; LCCOMB_X57_Y9_N28 ; QSF Assignment ;
  601. ; Location ; ; ; slave_ahb_hsel ; LCCOMB_X56_Y10_N0 ; QSF Assignment ;
  602. ; Location ; ; ; slave_ahb_hsize[0] ; LCCOMB_X56_Y10_N8 ; QSF Assignment ;
  603. ; Location ; ; ; slave_ahb_hsize[1] ; LCCOMB_X56_Y10_N10 ; QSF Assignment ;
  604. ; Location ; ; ; slave_ahb_hsize[2] ; LCCOMB_X56_Y10_N12 ; QSF Assignment ;
  605. ; Location ; ; ; slave_ahb_htrans[0] ; LCCOMB_X56_Y10_N4 ; QSF Assignment ;
  606. ; Location ; ; ; slave_ahb_htrans[1] ; LCCOMB_X56_Y10_N6 ; QSF Assignment ;
  607. ; Location ; ; ; slave_ahb_hwdata[0] ; LCCOMB_X56_Y8_N26 ; QSF Assignment ;
  608. ; Location ; ; ; slave_ahb_hwdata[10] ; LCCOMB_X56_Y7_N16 ; QSF Assignment ;
  609. ; Location ; ; ; slave_ahb_hwdata[11] ; LCCOMB_X56_Y7_N18 ; QSF Assignment ;
  610. ; Location ; ; ; slave_ahb_hwdata[12] ; LCCOMB_X56_Y7_N20 ; QSF Assignment ;
  611. ; Location ; ; ; slave_ahb_hwdata[13] ; LCCOMB_X56_Y7_N22 ; QSF Assignment ;
  612. ; Location ; ; ; slave_ahb_hwdata[14] ; LCCOMB_X56_Y7_N24 ; QSF Assignment ;
  613. ; Location ; ; ; slave_ahb_hwdata[15] ; LCCOMB_X56_Y7_N26 ; QSF Assignment ;
  614. ; Location ; ; ; slave_ahb_hwdata[16] ; LCCOMB_X56_Y6_N0 ; QSF Assignment ;
  615. ; Location ; ; ; slave_ahb_hwdata[17] ; LCCOMB_X56_Y6_N2 ; QSF Assignment ;
  616. ; Location ; ; ; slave_ahb_hwdata[18] ; LCCOMB_X56_Y6_N4 ; QSF Assignment ;
  617. ; Location ; ; ; slave_ahb_hwdata[19] ; LCCOMB_X56_Y6_N6 ; QSF Assignment ;
  618. ; Location ; ; ; slave_ahb_hwdata[1] ; LCCOMB_X56_Y8_N28 ; QSF Assignment ;
  619. ; Location ; ; ; slave_ahb_hwdata[20] ; LCCOMB_X56_Y6_N8 ; QSF Assignment ;
  620. ; Location ; ; ; slave_ahb_hwdata[21] ; LCCOMB_X56_Y6_N10 ; QSF Assignment ;
  621. ; Location ; ; ; slave_ahb_hwdata[22] ; LCCOMB_X56_Y6_N12 ; QSF Assignment ;
  622. ; Location ; ; ; slave_ahb_hwdata[23] ; LCCOMB_X56_Y6_N14 ; QSF Assignment ;
  623. ; Location ; ; ; slave_ahb_hwdata[24] ; LCCOMB_X56_Y6_N16 ; QSF Assignment ;
  624. ; Location ; ; ; slave_ahb_hwdata[25] ; LCCOMB_X56_Y6_N18 ; QSF Assignment ;
  625. ; Location ; ; ; slave_ahb_hwdata[26] ; LCCOMB_X56_Y6_N20 ; QSF Assignment ;
  626. ; Location ; ; ; slave_ahb_hwdata[27] ; LCCOMB_X56_Y6_N22 ; QSF Assignment ;
  627. ; Location ; ; ; slave_ahb_hwdata[28] ; LCCOMB_X56_Y6_N24 ; QSF Assignment ;
  628. ; Location ; ; ; slave_ahb_hwdata[29] ; LCCOMB_X56_Y6_N26 ; QSF Assignment ;
  629. ; Location ; ; ; slave_ahb_hwdata[2] ; LCCOMB_X56_Y7_N0 ; QSF Assignment ;
  630. ; Location ; ; ; slave_ahb_hwdata[30] ; LCCOMB_X56_Y6_N28 ; QSF Assignment ;
  631. ; Location ; ; ; slave_ahb_hwdata[31] ; LCCOMB_X56_Y6_N30 ; QSF Assignment ;
  632. ; Location ; ; ; slave_ahb_hwdata[3] ; LCCOMB_X56_Y7_N2 ; QSF Assignment ;
  633. ; Location ; ; ; slave_ahb_hwdata[4] ; LCCOMB_X56_Y7_N4 ; QSF Assignment ;
  634. ; Location ; ; ; slave_ahb_hwdata[5] ; LCCOMB_X56_Y7_N6 ; QSF Assignment ;
  635. ; Location ; ; ; slave_ahb_hwdata[6] ; LCCOMB_X56_Y7_N8 ; QSF Assignment ;
  636. ; Location ; ; ; slave_ahb_hwdata[7] ; LCCOMB_X56_Y7_N10 ; QSF Assignment ;
  637. ; Location ; ; ; slave_ahb_hwdata[8] ; LCCOMB_X56_Y7_N12 ; QSF Assignment ;
  638. ; Location ; ; ; slave_ahb_hwdata[9] ; LCCOMB_X56_Y7_N14 ; QSF Assignment ;
  639. ; Location ; ; ; slave_ahb_hwrite ; LCCOMB_X56_Y10_N20 ; QSF Assignment ;
  640. ; Location ; ; ; sys_ctrl_hseBypass ; LCCOMB_X57_Y5_N6 ; QSF Assignment ;
  641. ; Location ; ; ; sys_ctrl_hseEnable ; LCCOMB_X57_Y5_N4 ; QSF Assignment ;
  642. ; Location ; ; ; sys_ctrl_pllEnable ; LCCOMB_X57_Y5_N8 ; QSF Assignment ;
  643. ; Location ; ; ; sys_ctrl_sleep ; LCCOMB_X57_Y5_N10 ; QSF Assignment ;
  644. ; Location ; ; ; sys_ctrl_standby ; LCCOMB_X57_Y5_N14 ; QSF Assignment ;
  645. ; Location ; ; ; usb0_id ; LCCOMB_X54_Y4_N10 ; QSF Assignment ;
  646. +----------+----------------+--------------+----------------------+--------------------+----------------+
  647. +----------------------------------------------+
  648. ; Incremental Compilation Preservation Summary ;
  649. +---------------------+------------------------+
  650. ; Type ; Value ;
  651. +---------------------+------------------------+
  652. ; Placement (by node) ; ;
  653. ; -- Requested ; 0 / 2084 ( 0.00 % ) ;
  654. ; -- Achieved ; 0 / 2084 ( 0.00 % ) ;
  655. ; ; ;
  656. ; Routing (by net) ; ;
  657. ; -- Requested ; 0 / 0 ( 0.00 % ) ;
  658. ; -- Achieved ; 0 / 0 ( 0.00 % ) ;
  659. +---------------------+------------------------+
  660. +-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  661. ; Incremental Compilation Partition Settings ;
  662. +-----------------------------------+----------------+-------------------+-------------------------+------------------------+------------------------------+--------------------------------------------------------------+
  663. ; Partition Name ; Partition Type ; Netlist Type Used ; Preservation Level Used ; Netlist Type Requested ; Preservation Level Requested ; Contents ;
  664. +-----------------------------------+----------------+-------------------+-------------------------+------------------------+------------------------------+--------------------------------------------------------------+
  665. ; Top ; User-created ; Source File ; N/A ; Source File ; N/A ; ;
  666. ; macro_inst_apb_adc0_inst_adc_inst ; User-created ; Source File ; N/A ; Source File ; N/A ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|alta_adc:adc_inst ;
  667. ; macro_inst_apb_dac0_inst_dac_inst ; User-created ; Source File ; N/A ; Source File ; N/A ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|alta_dac:dac_inst ;
  668. ; rv32 ; User-created ; Source File ; N/A ; Source File ; N/A ; alta_rv32:rv32 ;
  669. ; hard_block:auto_generated_inst ; Auto-generated ; Source File ; N/A ; Source File ; N/A ; hard_block:auto_generated_inst ;
  670. +-----------------------------------+----------------+-------------------+-------------------------+------------------------+------------------------------+--------------------------------------------------------------+
  671. +---------------------------------------------------------------------------------------------------------------+
  672. ; Incremental Compilation Placement Preservation ;
  673. +-----------------------------------+---------+-------------------+-------------------------+-------------------+
  674. ; Partition Name ; # Nodes ; # Preserved Nodes ; Preservation Level Used ; Netlist Type Used ;
  675. +-----------------------------------+---------+-------------------+-------------------------+-------------------+
  676. ; Top ; 2070 ; 0 ; N/A ; Source File ;
  677. ; macro_inst_apb_adc0_inst_adc_inst ; 0 ; 0 ; N/A ; Source File ;
  678. ; macro_inst_apb_dac0_inst_dac_inst ; 0 ; 0 ; N/A ; Source File ;
  679. ; rv32 ; 2 ; 0 ; N/A ; Source File ;
  680. ; hard_block:auto_generated_inst ; 12 ; 0 ; N/A ; Source File ;
  681. +-----------------------------------+---------+-------------------+-------------------------+-------------------+
  682. +----------------------------------------------------------------------------------------------------------------------------------------------+
  683. ; Incremental Compilation LogicLock Region Preservation ;
  684. +-----------------+------------+------------------+-----------------+------------------+------------------+-----------------+------------------+
  685. ; Region Name ; Partitions ; Requested Origin ; Requested Width ; Requested Height ; Effective Origin ; Effective Width ; Effective Height ;
  686. +-----------------+------------+------------------+-----------------+------------------+------------------+-----------------+------------------+
  687. ; LOGIC_RESERVE_0 ; ; X43_Y5 ; 13 ; 8 ; X43_Y5 ; 13 ; 8 ;
  688. ; core_logic ; Top, rv32 ; X43_Y1 ; 20 ; 12 ; X43_Y1 ; 20 ; 12 ;
  689. +-----------------+------------+------------------+-----------------+------------------+------------------+-----------------+------------------+
  690. Note: The effective origin and size are the region properties taking into account any post-fit logic assigned to the LogicLock region.
  691. +--------------+
  692. ; Pin-Out File ;
  693. +--------------+
  694. The pin-out file can be found in D:/LYW/WBJW/CODE/NEW_TSB_3.0/AG32/example/logic/quartus_logs/example_board.pin.
  695. +----------------------------------------------------------------------------+
  696. ; Fitter Resource Usage Summary ;
  697. +---------------------------------------------+------------------------------+
  698. ; Resource ; Usage ;
  699. +---------------------------------------------+------------------------------+
  700. ; Total logic elements ; 1,628 / 75,408 ( 2 % ) ;
  701. ; -- Combinational with no register ; 1144 ;
  702. ; -- Register only ; 96 ;
  703. ; -- Combinational with a register ; 388 ;
  704. ; ; ;
  705. ; Logic element usage by number of LUT inputs ; ;
  706. ; -- 4 input functions ; 749 ;
  707. ; -- 3 input functions ; 456 ;
  708. ; -- <=2 input functions ; 327 ;
  709. ; -- Register only ; 96 ;
  710. ; ; ;
  711. ; Logic elements by mode ; ;
  712. ; -- normal mode ; 1059 ;
  713. ; -- arithmetic mode ; 473 ;
  714. ; ; ;
  715. ; Total registers* ; 484 / 77,471 ( < 1 % ) ;
  716. ; -- Dedicated logic registers ; 484 / 75,408 ( < 1 % ) ;
  717. ; -- I/O registers ; 0 / 2,063 ( 0 % ) ;
  718. ; ; ;
  719. ; Total LABs: partially or completely used ; 117 / 4,713 ( 2 % ) ;
  720. ; Virtual pins ; 1 ;
  721. ; I/O pins ; 15 / 427 ( 4 % ) ;
  722. ; -- Clock pins ; 2 / 7 ( 29 % ) ;
  723. ; -- Dedicated input pins ; 0 / 9 ( 0 % ) ;
  724. ; ; ;
  725. ; Global signals ; 3 ;
  726. ; M9Ks ; 2 / 305 ( < 1 % ) ;
  727. ; Total block memory bits ; 16,384 / 2,810,880 ( < 1 % ) ;
  728. ; Total block memory implementation bits ; 18,432 / 2,810,880 ( < 1 % ) ;
  729. ; Embedded Multiplier 9-bit elements ; 0 / 400 ( 0 % ) ;
  730. ; PLLs ; 1 / 4 ( 25 % ) ;
  731. ; Global clocks ; 3 / 20 ( 15 % ) ;
  732. ; JTAGs ; 0 / 1 ( 0 % ) ;
  733. ; CRC blocks ; 0 / 1 ( 0 % ) ;
  734. ; ASMI blocks ; 0 / 1 ( 0 % ) ;
  735. ; Impedance control blocks ; 0 / 4 ( 0 % ) ;
  736. ; Average interconnect usage (total/H/V) ; 0% / 0% / 0% ;
  737. ; Peak interconnect usage (total/H/V) ; 13% / 11% / 15% ;
  738. ; Maximum fan-out ; 486 ;
  739. ; Highest non-global fan-out ; 150 ;
  740. ; Total fan-out ; 7005 ;
  741. ; Average fan-out ; 3.24 ;
  742. +---------------------------------------------+------------------------------+
  743. * Register count does not include registers inside RAM blocks or DSP blocks.
  744. +-----------------------------------------------------------------------------------------------------------+
  745. ; LogicLock Region Resource Usage ;
  746. +---------------------------------------------+-------------------+------------------+----------------------+
  747. ; Statistic ; Root Region ; LOGIC_RESERVE_0 ; core_logic ;
  748. +---------------------------------------------+-------------------+------------------+----------------------+
  749. ; Difficulty Clustering Region ; Low ; Low ; Low ;
  750. ; ; ; ; ;
  751. ; Total logic elements ; 0 / 75408 ( 0 % ) ; 0 / 1536 ( 0 % ) ; 1628 / 3648 ( 45 % ) ;
  752. ; -- Combinational with no register ; 0 ; 0 ; 1144 ;
  753. ; -- Register only ; 0 ; 0 ; 96 ;
  754. ; -- Combinational with a register ; 0 ; 0 ; 388 ;
  755. ; ; ; ; ;
  756. ; Logic element usage by number of LUT inputs ; ; ; ;
  757. ; -- 4 input functions ; 0 ; 0 ; 749 ;
  758. ; -- 3 input functions ; 0 ; 0 ; 456 ;
  759. ; -- <=2 input functions ; 0 ; 0 ; 327 ;
  760. ; -- Register only ; 0 ; 0 ; 96 ;
  761. ; ; ; ; ;
  762. ; Logic elements by mode ; ; ; ;
  763. ; -- normal mode ; 0 ; 0 ; 1059 ;
  764. ; -- arithmetic mode ; 0 ; 0 ; 473 ;
  765. ; ; ; ; ;
  766. ; Total registers ; 0 ; 0 ; 484 ;
  767. ; -- Dedicated logic registers ; 0 / 75408 ( 0 % ) ; 0 / 1536 ( 0 % ) ; 484 / 3648 ( 13 % ) ;
  768. ; ; ; ; ;
  769. ; Total LABs: partially or completely used ; 0 / 4713 ( 0 % ) ; 0 / 96 ( 0 % ) ; 117 / 228 ( 51 % ) ;
  770. ; ; ; ; ;
  771. ; Virtual pins ; 0 ; 0 ; 1 ;
  772. ; I/O pins ; 15 ; 0 ; 0 ;
  773. ; Embedded Multiplier 9-bit elements ; 0 / 400 ( 0 % ) ; 0 ; 0 ;
  774. ; Total memory bits ; 0 ; 0 ; 16384 ;
  775. ; Total RAM block bits ; 0 ; 0 ; 18432 ;
  776. ; PLL ; 1 / 4 ( 25 % ) ; 0 ; 0 ;
  777. ; M9K ; 0 / 305 ( 0 % ) ; 0 / 8 ( 0 % ) ; 2 / 12 ( 16 % ) ;
  778. ; Clock control block ; 3 / 24 ( 12 % ) ; 0 ; 0 ;
  779. ; ; ; ; ;
  780. ; Connections ; ; ; ;
  781. ; -- Input Connections ; 18 ; 0 ; 947 ;
  782. ; -- Registered Input Connections ; 0 ; 0 ; 938 ;
  783. ; -- Output Connections ; 947 ; 0 ; 18 ;
  784. ; -- Registered Output Connections ; 0 ; 0 ; 0 ;
  785. ; ; ; ; ;
  786. ; Internal Connections ; ; ; ;
  787. ; -- Total Connections ; 998 ; 0 ; 6992 ;
  788. ; -- Registered Connections ; 0 ; 0 ; 3421 ;
  789. ; ; ; ; ;
  790. ; External Connections ; ; ; ;
  791. ; -- Root Region ; 0 ; 0 ; 965 ;
  792. ; -- LOGIC_RESERVE_0 ; 0 ; 0 ; 0 ;
  793. ; -- core_logic ; 965 ; 0 ; 0 ;
  794. ; ; ; ; ;
  795. ; Region Placement ; ; ; ;
  796. ; -- Origin ; -- ; X43_Y5 ; X43_Y1 ;
  797. ; -- Width ; -- ; 13 ; 20 ;
  798. ; -- Height ; -- ; 8 ; 12 ;
  799. +---------------------------------------------+-------------------+------------------+----------------------+
  800. +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  801. ; Fitter Partition Statistics ;
  802. +---------------------------------------------+-----------------------+-----------------------------------+-----------------------------------+---------------------+--------------------------------+
  803. ; Statistic ; Top ; macro_inst_apb_adc0_inst_adc_inst ; macro_inst_apb_dac0_inst_dac_inst ; rv32 ; hard_block:auto_generated_inst ;
  804. +---------------------------------------------+-----------------------+-----------------------------------+-----------------------------------+---------------------+--------------------------------+
  805. ; Difficulty Clustering Region ; Low ; Low ; Low ; Low ; Low ;
  806. ; ; ; ; ; ; ;
  807. ; Total logic elements ; 1627 / 75408 ( 2 % ) ; 0 / 75408 ( 0 % ) ; 0 / 75408 ( 0 % ) ; 1 / 75408 ( < 1 % ) ; 0 / 75408 ( 0 % ) ;
  808. ; -- Combinational with no register ; 1143 ; 0 ; 0 ; 1 ; 0 ;
  809. ; -- Register only ; 96 ; 0 ; 0 ; 0 ; 0 ;
  810. ; -- Combinational with a register ; 388 ; 0 ; 0 ; 0 ; 0 ;
  811. ; ; ; ; ; ; ;
  812. ; Logic element usage by number of LUT inputs ; ; ; ; ; ;
  813. ; -- 4 input functions ; 749 ; 0 ; 0 ; 0 ; 0 ;
  814. ; -- 3 input functions ; 456 ; 0 ; 0 ; 0 ; 0 ;
  815. ; -- <=2 input functions ; 326 ; 0 ; 0 ; 1 ; 0 ;
  816. ; -- Register only ; 96 ; 0 ; 0 ; 0 ; 0 ;
  817. ; ; ; ; ; ; ;
  818. ; Logic elements by mode ; ; ; ; ; ;
  819. ; -- normal mode ; 1058 ; 0 ; 0 ; 1 ; 0 ;
  820. ; -- arithmetic mode ; 473 ; 0 ; 0 ; 0 ; 0 ;
  821. ; ; ; ; ; ; ;
  822. ; Total registers ; 484 ; 0 ; 0 ; 0 ; 0 ;
  823. ; -- Dedicated logic registers ; 484 / 75408 ( < 1 % ) ; 0 / 75408 ( 0 % ) ; 0 / 75408 ( 0 % ) ; 0 / 75408 ( 0 % ) ; 0 / 75408 ( 0 % ) ;
  824. ; ; ; ; ; ; ;
  825. ; Total LABs: partially or completely used ; 117 / 4713 ( 2 % ) ; 0 / 4713 ( 0 % ) ; 0 / 4713 ( 0 % ) ; 1 / 4713 ( < 1 % ) ; 0 / 4713 ( 0 % ) ;
  826. ; ; ; ; ; ; ;
  827. ; Virtual pins ; 0 ; 0 ; 0 ; 1 ; 0 ;
  828. ; I/O pins ; 15 ; 0 ; 0 ; 0 ; 0 ;
  829. ; Embedded Multiplier 9-bit elements ; 0 / 400 ( 0 % ) ; 0 / 400 ( 0 % ) ; 0 / 400 ( 0 % ) ; 0 / 400 ( 0 % ) ; 0 / 400 ( 0 % ) ;
  830. ; Total memory bits ; 16384 ; 0 ; 0 ; 0 ; 0 ;
  831. ; Total RAM block bits ; 18432 ; 0 ; 0 ; 0 ; 0 ;
  832. ; PLL ; 0 / 4 ( 0 % ) ; 0 / 4 ( 0 % ) ; 0 / 4 ( 0 % ) ; 0 / 4 ( 0 % ) ; 1 / 4 ( 25 % ) ;
  833. ; M9K ; 2 / 305 ( < 1 % ) ; 0 / 305 ( 0 % ) ; 0 / 305 ( 0 % ) ; 0 / 305 ( 0 % ) ; 0 / 305 ( 0 % ) ;
  834. ; Clock control block ; 2 / 24 ( 8 % ) ; 0 / 24 ( 0 % ) ; 0 / 24 ( 0 % ) ; 0 / 24 ( 0 % ) ; 1 / 24 ( 4 % ) ;
  835. ; ; ; ; ; ; ;
  836. ; Connections ; ; ; ; ; ;
  837. ; -- Input Connections ; 680 ; 0 ; 0 ; 1 ; 5 ;
  838. ; -- Registered Input Connections ; 554 ; 0 ; 0 ; 0 ; 0 ;
  839. ; -- Output Connections ; 184 ; 0 ; 0 ; 14 ; 488 ;
  840. ; -- Registered Output Connections ; 151 ; 0 ; 0 ; 0 ; 0 ;
  841. ; ; ; ; ; ; ;
  842. ; Internal Connections ; ; ; ; ; ;
  843. ; -- Total Connections ; 7017 ; 0 ; 0 ; 15 ; 500 ;
  844. ; -- Registered Connections ; 2967 ; 0 ; 0 ; 0 ; 0 ;
  845. ; ; ; ; ; ; ;
  846. ; External Connections ; ; ; ; ; ;
  847. ; -- Top ; 358 ; 0 ; 0 ; 14 ; 492 ;
  848. ; -- macro_inst_apb_adc0_inst_adc_inst ; 0 ; 0 ; 0 ; 0 ; 0 ;
  849. ; -- macro_inst_apb_dac0_inst_dac_inst ; 0 ; 0 ; 0 ; 0 ; 0 ;
  850. ; -- rv32 ; 14 ; 0 ; 0 ; 0 ; 1 ;
  851. ; -- hard_block:auto_generated_inst ; 492 ; 0 ; 0 ; 1 ; 0 ;
  852. ; ; ; ; ; ; ;
  853. ; Partition Interface ; ; ; ; ; ;
  854. ; -- Input Ports ; 4 ; 8 ; 13 ; 224 ; 5 ;
  855. ; -- Output Ports ; 3 ; 13 ; 1 ; 295 ; 2 ;
  856. ; -- Bidir Ports ; 8 ; 0 ; 0 ; 0 ; 0 ;
  857. ; ; ; ; ; ; ;
  858. ; Registered Ports ; ; ; ; ; ;
  859. ; -- Registered Input Ports ; 0 ; 0 ; 0 ; 0 ; 0 ;
  860. ; -- Registered Output Ports ; 0 ; 0 ; 0 ; 0 ; 0 ;
  861. ; ; ; ; ; ; ;
  862. ; Port Connectivity ; ; ; ; ; ;
  863. ; -- Input Ports driven by GND ; 0 ; 1 ; 0 ; 180 ; 0 ;
  864. ; -- Output Ports driven by GND ; 0 ; 0 ; 0 ; 170 ; 0 ;
  865. ; -- Input Ports driven by VCC ; 0 ; 0 ; 0 ; 4 ; 0 ;
  866. ; -- Output Ports driven by VCC ; 0 ; 0 ; 0 ; 0 ; 0 ;
  867. ; -- Input Ports with no Source ; 0 ; 0 ; 0 ; 0 ; 0 ;
  868. ; -- Output Ports with no Source ; 0 ; 0 ; 0 ; 0 ; 0 ;
  869. ; -- Input Ports with no Fanout ; 0 ; 6 ; 12 ; 150 ; 0 ;
  870. ; -- Output Ports with no Fanout ; 0 ; 0 ; 1 ; 226 ; 0 ;
  871. +---------------------------------------------+-----------------------+-----------------------------------+-----------------------------------+---------------------+--------------------------------+
  872. +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  873. ; Input Pins ;
  874. +---------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+----------------+---------------+-----------------+----------+--------------+--------------+---------------------------+----------------------+
  875. ; Name ; Pin # ; I/O Bank ; X coordinate ; Y coordinate ; Z coordinate ; Combinational Fan-Out ; Registered Fan-Out ; Global ; Input Register ; Power Up High ; PCI I/O Enabled ; Bus Hold ; Weak Pull Up ; I/O Standard ; Termination Control Block ; Location assigned by ;
  876. +---------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+----------------+---------------+-----------------+----------+--------------+--------------+---------------------------+----------------------+
  877. ; PIN_HSE ; C23 ; 7 ; 83 ; 62 ; 0 ; 0 ; 0 ; no ; no ; no ; yes ; no ; Off ; 3.3-V LVTTL ; -- ; Fitter ;
  878. ; PIN_HSI ; Y2 ; 2 ; 0 ; 30 ; 14 ; 1 ; 0 ; no ; no ; no ; yes ; no ; Off ; 3.3-V LVTTL ; -- ; Fitter ;
  879. ; PLL_CLKIN ; J1 ; 1 ; 0 ; 30 ; 7 ; 1 ; 0 ; no ; no ; no ; yes ; no ; Off ; 3.3-V LVTTL ; -- ; Fitter ;
  880. ; UART0_UARTRXD ; AH12 ; 3 ; 47 ; 0 ; 0 ; 1 ; 0 ; no ; no ; no ; yes ; no ; Off ; 3.3-V LVTTL ; -- ; Fitter ;
  881. +---------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+----------------+---------------+-----------------+----------+--------------+--------------+---------------------------+----------------------+
  882. +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  883. ; Output Pins ;
  884. +---------------+-------+----------+--------------+--------------+--------------+-----------------+------------------------+---------------+-----------+-----------------+------------+---------------+----------+--------------+--------------+------------------+-------------+---------------------------+----------------------------+-----------------------------+----------------------+----------------------+---------------------+
  885. ; Name ; Pin # ; I/O Bank ; X coordinate ; Y coordinate ; Z coordinate ; Output Register ; Output Enable Register ; Power Up High ; Slew Rate ; PCI I/O Enabled ; Open Drain ; TRI Primitive ; Bus Hold ; Weak Pull Up ; I/O Standard ; Current Strength ; Termination ; Termination Control Block ; Output Buffer Pre-emphasis ; Voltage Output Differential ; Location assigned by ; Output Enable Source ; Output Enable Group ;
  886. +---------------+-------+----------+--------------+--------------+--------------+-----------------+------------------------+---------------+-----------+-----------------+------------+---------------+----------+--------------+--------------+------------------+-------------+---------------------------+----------------------------+-----------------------------+----------------------+----------------------+---------------------+
  887. ; SPI0_CSN ; AF13 ; 3 ; 43 ; 0 ; 0 ; no ; no ; no ; 2 ; yes ; no ; yes ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; no ; no ; Fitter ; - ; - ;
  888. ; SPI0_SCK ; AD12 ; 3 ; 45 ; 0 ; 7 ; no ; no ; no ; 2 ; yes ; no ; yes ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; no ; no ; Fitter ; - ; - ;
  889. ; UART0_UARTTXD ; AD15 ; 4 ; 51 ; 0 ; 14 ; no ; no ; no ; 2 ; yes ; no ; yes ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; no ; no ; Fitter ; - ; - ;
  890. +---------------+-------+----------+--------------+--------------+--------------+-----------------+------------------------+---------------+-----------+-----------------+------------+---------------+----------+--------------+--------------+------------------+-------------+---------------------------+----------------------------+-----------------------------+----------------------+----------------------+---------------------+
  891. +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  892. ; Bidir Pins ;
  893. +-------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+----------------+-----------------+------------------------+---------------+-----------+-----------------+------------+----------+--------------+--------------+------------------+--------------------+---------------------------+----------------------+------+-------------------------------+---------------------+
  894. ; Name ; Pin # ; I/O Bank ; X coordinate ; Y coordinate ; Z coordinate ; Combinational Fan-Out ; Registered Fan-Out ; Global ; Input Register ; Output Register ; Output Enable Register ; Power Up High ; Slew Rate ; PCI I/O Enabled ; Open Drain ; Bus Hold ; Weak Pull Up ; I/O Standard ; Current Strength ; Output Termination ; Termination Control Block ; Location assigned by ; Load ; Output Enable Source ; Output Enable Group ;
  895. +-------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+----------------+-----------------+------------------------+---------------+-----------+-----------------+------------+----------+--------------+--------------+------------------+--------------------+---------------------------+----------------------+------+-------------------------------+---------------------+
  896. ; BAUD_RATE ; AB17 ; 4 ; 76 ; 0 ; 0 ; 0 ; 0 ; no ; no ; no ; no ; no ; 2 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; Fitter ; 0 pF ; - ; - ;
  897. ; GPIO4_1 ; AE14 ; 3 ; 45 ; 0 ; 0 ; 1 ; 0 ; no ; no ; no ; no ; no ; 2 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; Fitter ; 0 pF ; gpio4_io_out_en[1] (inverted) ; - ;
  898. ; GPIO4_2 ; AB13 ; 3 ; 45 ; 0 ; 14 ; 1 ; 0 ; no ; no ; no ; no ; no ; 2 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; Fitter ; 0 pF ; gpio4_io_out_en[2] (inverted) ; - ;
  899. ; SPI0_SI_IO0 ; AB16 ; 4 ; 56 ; 0 ; 21 ; 1 ; 0 ; no ; no ; no ; no ; no ; 2 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; Fitter ; 0 pF ; gpio0_io_out_en[0] (inverted) ; - ;
  900. ; TEST_SINGLE ; AG25 ; 4 ; 80 ; 0 ; 7 ; 0 ; 0 ; no ; no ; no ; no ; no ; 2 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; Fitter ; 0 pF ; - ; - ;
  901. ; UART1_RX ; AG12 ; 3 ; 47 ; 0 ; 7 ; 1 ; 0 ; no ; no ; no ; no ; no ; 2 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; Fitter ; 0 pF ; - ; - ;
  902. ; UART1_TX ; AC15 ; 4 ; 51 ; 0 ; 21 ; 0 ; 0 ; no ; no ; no ; no ; no ; 2 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; Fitter ; 0 pF ; gpio8_io_out_en[0] (inverted) ; - ;
  903. ; so_io1 ; V27 ; 5 ; 94 ; 21 ; 14 ; 0 ; 0 ; no ; no ; no ; no ; no ; 2 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; Fitter ; 0 pF ; - ; - ;
  904. +-------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+----------------+-----------------+------------------------+---------------+-----------+-----------------+------------+----------+--------------+--------------+------------------+--------------------+---------------------------+----------------------+------+-------------------------------+---------------------+
  905. +-------------------------------------------------------------------------------------------------------------------------+
  906. ; Dual Purpose and Dedicated Pins ;
  907. +----------+-----------------------------+--------------------------+-------------------------+---------------------------+
  908. ; Location ; Pin Name ; Reserved As ; User Signal Name ; Pin Type ;
  909. +----------+-----------------------------+--------------------------+-------------------------+---------------------------+
  910. ; F4 ; DIFFIO_L5n, DATA1, ASDO ; As input tri-stated ; ~ALTERA_ASDO_DATA1~ ; Dual Purpose Pin ;
  911. ; E2 ; DIFFIO_L8p, FLASH_nCE, nCSO ; As input tri-stated ; ~ALTERA_FLASH_nCE_nCSO~ ; Dual Purpose Pin ;
  912. ; M6 ; nSTATUS ; - ; - ; Dedicated Programming Pin ;
  913. ; P3 ; DCLK ; As output driving ground ; ~ALTERA_DCLK~ ; Dual Purpose Pin ;
  914. ; N7 ; DATA0 ; As input tri-stated ; ~ALTERA_DATA0~ ; Dual Purpose Pin ;
  915. ; P4 ; nCONFIG ; - ; - ; Dedicated Programming Pin ;
  916. ; R8 ; nCE ; - ; - ; Dedicated Programming Pin ;
  917. ; P24 ; CONF_DONE ; - ; - ; Dedicated Programming Pin ;
  918. ; N22 ; MSEL0 ; - ; - ; Dedicated Programming Pin ;
  919. ; P23 ; MSEL1 ; - ; - ; Dedicated Programming Pin ;
  920. ; M22 ; MSEL2 ; - ; - ; Dedicated Programming Pin ;
  921. ; P22 ; MSEL3 ; - ; - ; Dedicated Programming Pin ;
  922. ; P28 ; DIFFIO_R19n, nCEO ; Use as programming pin ; ~ALTERA_nCEO~ ; Dual Purpose Pin ;
  923. +----------+-----------------------------+--------------------------+-------------------------+---------------------------+
  924. +-----------------------------------------------------------+
  925. ; I/O Bank Usage ;
  926. +----------+-----------------+---------------+--------------+
  927. ; I/O Bank ; Usage ; VCCIO Voltage ; VREF Voltage ;
  928. +----------+-----------------+---------------+--------------+
  929. ; 1 ; 5 / 45 ( 11 % ) ; 3.3V ; -- ;
  930. ; 2 ; 1 / 49 ( 2 % ) ; 3.3V ; -- ;
  931. ; 3 ; 6 / 59 ( 10 % ) ; 3.3V ; -- ;
  932. ; 4 ; 5 / 58 ( 9 % ) ; 3.3V ; -- ;
  933. ; 5 ; 1 / 52 ( 2 % ) ; 3.3V ; -- ;
  934. ; 6 ; 1 / 48 ( 2 % ) ; 3.3V ; -- ;
  935. ; 7 ; 1 / 59 ( 2 % ) ; 3.3V ; -- ;
  936. ; 8 ; 0 / 57 ( 0 % ) ; 3.3V ; -- ;
  937. +----------+-----------------+---------------+--------------+
  938. +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  939. ; All Package Pins ;
  940. +----------+------------+----------+-----------------------------------------------------------+--------+--------------+---------+------------+-----------------+----------+--------------+
  941. ; Location ; Pad Number ; I/O Bank ; Pin Name/Usage ; Dir. ; I/O Standard ; Voltage ; I/O Type ; User Assignment ; Bus Hold ; Weak Pull Up ;
  942. +----------+------------+----------+-----------------------------------------------------------+--------+--------------+---------+------------+-----------------+----------+--------------+
  943. ; A2 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  944. ; A3 ; 435 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  945. ; A4 ; 432 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  946. ; A5 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  947. ; A6 ; 412 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  948. ; A7 ; 409 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  949. ; A8 ; 418 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  950. ; A9 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  951. ; A10 ; 399 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  952. ; A11 ; 397 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  953. ; A12 ; 392 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  954. ; A13 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  955. ; A14 ; 384 ; 8 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  956. ; A15 ; 382 ; 7 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  957. ; A16 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  958. ; A17 ; 377 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  959. ; A18 ; 365 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  960. ; A19 ; 363 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  961. ; A20 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  962. ; A21 ; 350 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  963. ; A22 ; 348 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  964. ; A23 ; 337 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  965. ; A24 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  966. ; A25 ; 330 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  967. ; A26 ; 329 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  968. ; A27 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  969. ; AA1 ; ; 2 ; VCCIO2 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  970. ; AA2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  971. ; AA3 ; 90 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  972. ; AA4 ; 89 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  973. ; AA5 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  974. ; AA6 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  975. ; AA7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  976. ; AA8 ; 129 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  977. ; AA9 ; ; ; GNDA1 ; gnd ; ; ; -- ; ; -- ; -- ;
  978. ; AA10 ; 130 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  979. ; AA11 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  980. ; AA12 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  981. ; AA13 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  982. ; AA14 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  983. ; AA15 ; 173 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  984. ; AA16 ; 171 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  985. ; AA17 ; 201 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  986. ; AA18 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  987. ; AA19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  988. ; AA20 ; ; ; GNDA4 ; gnd ; ; ; -- ; ; -- ; -- ;
  989. ; AA21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  990. ; AA22 ; 223 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  991. ; AA23 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  992. ; AA24 ; 226 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  993. ; AA25 ; 240 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  994. ; AA26 ; 239 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  995. ; AA27 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  996. ; AA28 ; ; 5 ; VCCIO5 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  997. ; AB1 ; 74 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  998. ; AB2 ; 73 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  999. ; AB3 ; 87 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1000. ; AB4 ; 96 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1001. ; AB5 ; 102 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1002. ; AB6 ; 101 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1003. ; AB7 ; 127 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1004. ; AB8 ; 123 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1005. ; AB9 ; 122 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1006. ; AB10 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1007. ; AB11 ; 139 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1008. ; AB12 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1009. ; AB13 ; 154 ; 3 ; GPIO4_2 ; bidir ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1010. ; AB14 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1011. ; AB15 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1012. ; AB16 ; 172 ; 4 ; SPI0_SI_IO0 ; bidir ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1013. ; AB17 ; 202 ; 4 ; BAUD_RATE ; bidir ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1014. ; AB18 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1015. ; AB19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1016. ; AB20 ; 211 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1017. ; AB21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1018. ; AB22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1019. ; AB23 ; 224 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1020. ; AB24 ; 222 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1021. ; AB25 ; 238 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1022. ; AB26 ; 237 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1023. ; AB27 ; 242 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1024. ; AB28 ; 241 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1025. ; AC1 ; 82 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1026. ; AC2 ; 81 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1027. ; AC3 ; 83 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1028. ; AC4 ; 100 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1029. ; AC5 ; 99 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1030. ; AC6 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1031. ; AC7 ; 119 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1032. ; AC8 ; 128 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1033. ; AC9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1034. ; AC10 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1035. ; AC11 ; 148 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1036. ; AC12 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1037. ; AC13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1038. ; AC14 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1039. ; AC15 ; 164 ; 4 ; UART1_TX ; bidir ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1040. ; AC16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1041. ; AC17 ; 181 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1042. ; AC18 ; 200 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1043. ; AC19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1044. ; AC20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1045. ; AC21 ; 212 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1046. ; AC22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1047. ; AC23 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1048. ; AC24 ; 221 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1049. ; AC25 ; 220 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1050. ; AC26 ; 228 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1051. ; AC27 ; 236 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1052. ; AC28 ; 235 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1053. ; AD1 ; 86 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1054. ; AD2 ; 85 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1055. ; AD3 ; 84 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1056. ; AD4 ; 105 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1057. ; AD5 ; 103 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1058. ; AD6 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1059. ; AD7 ; 109 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1060. ; AD8 ; 118 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1061. ; AD9 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1062. ; AD10 ; 124 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1063. ; AD11 ; 149 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1064. ; AD12 ; 155 ; 3 ; SPI0_SCK ; output ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1065. ; AD13 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1066. ; AD14 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1067. ; AD15 ; 165 ; 4 ; UART0_UARTTXD ; output ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1068. ; AD16 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1069. ; AD17 ; 182 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1070. ; AD18 ; 197 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1071. ; AD19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1072. ; AD20 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1073. ; AD21 ; 213 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1074. ; AD22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1075. ; AD23 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1076. ; AD24 ; 217 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1077. ; AD25 ; 209 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1078. ; AD26 ; 227 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1079. ; AD27 ; 232 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1080. ; AD28 ; 231 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1081. ; AE1 ; 94 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1082. ; AE2 ; 93 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1083. ; AE3 ; 97 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1084. ; AE4 ; 107 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1085. ; AE5 ; 110 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1086. ; AE6 ; 104 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1087. ; AE7 ; 133 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1088. ; AE8 ; 136 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1089. ; AE9 ; 138 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1090. ; AE10 ; 140 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1091. ; AE11 ; 146 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1092. ; AE12 ; 144 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1093. ; AE13 ; 152 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1094. ; AE14 ; 156 ; 3 ; GPIO4_1 ; bidir ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1095. ; AE15 ; 166 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1096. ; AE16 ; 174 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1097. ; AE17 ; 175 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1098. ; AE18 ; 185 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1099. ; AE19 ; 191 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1100. ; AE20 ; 195 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1101. ; AE21 ; 198 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1102. ; AE22 ; 207 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1103. ; AE23 ; 215 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1104. ; AE24 ; 210 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1105. ; AE25 ; 203 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1106. ; AE26 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1107. ; AE27 ; 230 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1108. ; AE28 ; 229 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1109. ; AF1 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1110. ; AF2 ; 98 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1111. ; AF3 ; 113 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1112. ; AF4 ; 106 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1113. ; AF5 ; 111 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1114. ; AF6 ; 114 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1115. ; AF7 ; 134 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1116. ; AF8 ; 137 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1117. ; AF9 ; 135 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1118. ; AF10 ; 141 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1119. ; AF11 ; 147 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1120. ; AF12 ; 145 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1121. ; AF13 ; 153 ; 3 ; SPI0_CSN ; output ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1122. ; AF14 ; 157 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1123. ; AF15 ; 167 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1124. ; AF16 ; 170 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1125. ; AF17 ; 176 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1126. ; AF18 ; 186 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1127. ; AF19 ; 192 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1128. ; AF20 ; 196 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1129. ; AF21 ; 199 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1130. ; AF22 ; 208 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1131. ; AF23 ; 216 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1132. ; AF24 ; 193 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1133. ; AF25 ; 194 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1134. ; AF26 ; 204 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1135. ; AF27 ; 225 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1136. ; AF28 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1137. ; AG1 ; ; 2 ; VCCIO2 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1138. ; AG2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1139. ; AG3 ; 108 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1140. ; AG4 ; 116 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1141. ; AG5 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1142. ; AG6 ; 120 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1143. ; AG7 ; 125 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1144. ; AG8 ; 131 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1145. ; AG9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1146. ; AG10 ; 142 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1147. ; AG11 ; 150 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1148. ; AG12 ; 158 ; 3 ; UART1_RX ; bidir ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1149. ; AG13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1150. ; AG14 ; 160 ; 3 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  1151. ; AG15 ; 162 ; 4 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  1152. ; AG16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1153. ; AG17 ; 168 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1154. ; AG18 ; 177 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1155. ; AG19 ; 179 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1156. ; AG20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1157. ; AG21 ; 183 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1158. ; AG22 ; 187 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1159. ; AG23 ; 189 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1160. ; AG24 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1161. ; AG25 ; 205 ; 4 ; TEST_SINGLE ; bidir ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1162. ; AG26 ; 218 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1163. ; AG27 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1164. ; AG28 ; ; 5 ; VCCIO5 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1165. ; AH2 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1166. ; AH3 ; 112 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1167. ; AH4 ; 117 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1168. ; AH5 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1169. ; AH6 ; 121 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1170. ; AH7 ; 126 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1171. ; AH8 ; 132 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1172. ; AH9 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1173. ; AH10 ; 143 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1174. ; AH11 ; 151 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1175. ; AH12 ; 159 ; 3 ; UART0_UARTRXD ; input ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1176. ; AH13 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1177. ; AH14 ; 161 ; 3 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  1178. ; AH15 ; 163 ; 4 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  1179. ; AH16 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1180. ; AH17 ; 169 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1181. ; AH18 ; 178 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1182. ; AH19 ; 180 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1183. ; AH20 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1184. ; AH21 ; 184 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1185. ; AH22 ; 188 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1186. ; AH23 ; 190 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1187. ; AH24 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1188. ; AH25 ; 206 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1189. ; AH26 ; 219 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1190. ; AH27 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1191. ; B1 ; ; 1 ; VCCIO1 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1192. ; B2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1193. ; B3 ; 434 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1194. ; B4 ; 433 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1195. ; B5 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1196. ; B6 ; 413 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1197. ; B7 ; 410 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1198. ; B8 ; 419 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1199. ; B9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1200. ; B10 ; 400 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1201. ; B11 ; 398 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1202. ; B12 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1203. ; B13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1204. ; B14 ; 385 ; 8 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  1205. ; B15 ; 383 ; 7 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  1206. ; B16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1207. ; B17 ; 378 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1208. ; B18 ; 366 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1209. ; B19 ; 364 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1210. ; B20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1211. ; B21 ; 351 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1212. ; B22 ; 349 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1213. ; B23 ; 338 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1214. ; B24 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1215. ; B25 ; 331 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1216. ; B26 ; 326 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1217. ; B27 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1218. ; B28 ; ; 6 ; VCCIO6 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1219. ; C1 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1220. ; C2 ; 1 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1221. ; C3 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1222. ; C4 ; 439 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1223. ; C5 ; 437 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1224. ; C6 ; 436 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1225. ; C7 ; 422 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1226. ; C8 ; 420 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1227. ; C9 ; 416 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1228. ; C10 ; 403 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1229. ; C11 ; 414 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1230. ; C12 ; 390 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1231. ; C13 ; 386 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1232. ; C14 ; 388 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1233. ; C15 ; 380 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1234. ; C16 ; 375 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1235. ; C17 ; 361 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1236. ; C18 ; 354 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1237. ; C19 ; 358 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1238. ; C20 ; 356 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1239. ; C21 ; 347 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1240. ; C22 ; 343 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1241. ; C23 ; 339 ; 7 ; PIN_HSE ; input ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1242. ; C24 ; 341 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1243. ; C25 ; 336 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1244. ; C26 ; 325 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1245. ; C27 ; 316 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1246. ; C28 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1247. ; D1 ; 3 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1248. ; D2 ; 2 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1249. ; D3 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1250. ; D4 ; 440 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1251. ; D5 ; 438 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1252. ; D6 ; 424 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1253. ; D7 ; 423 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1254. ; D8 ; 421 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1255. ; D9 ; 417 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1256. ; D10 ; 404 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1257. ; D11 ; 415 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1258. ; D12 ; 391 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1259. ; D13 ; 387 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1260. ; D14 ; 389 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1261. ; D15 ; 381 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1262. ; D16 ; 376 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1263. ; D17 ; 362 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1264. ; D18 ; 355 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1265. ; D19 ; 359 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1266. ; D20 ; 357 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1267. ; D21 ; 344 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1268. ; D22 ; 327 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1269. ; D23 ; 340 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1270. ; D24 ; 342 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1271. ; D25 ; 335 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1272. ; D26 ; 317 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1273. ; D27 ; 315 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1274. ; D28 ; 314 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1275. ; E1 ; 17 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1276. ; E2 ; 16 ; 1 ; ~ALTERA_FLASH_nCE_nCSO~ / RESERVED_INPUT_WITH_WEAK_PULLUP ; input ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; On ;
  1277. ; E3 ; 7 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1278. ; E4 ; 441 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1279. ; E5 ; 430 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1280. ; E6 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1281. ; E7 ; 431 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1282. ; E8 ; 428 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1283. ; E9 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1284. ; E10 ; 426 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1285. ; E11 ; 407 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1286. ; E12 ; 405 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1287. ; E13 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1288. ; E14 ; 396 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1289. ; E15 ; 379 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1290. ; E16 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1291. ; E17 ; 373 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1292. ; E18 ; 352 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1293. ; E19 ; 346 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1294. ; E20 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1295. ; E21 ; 332 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1296. ; E22 ; 328 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1297. ; E23 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1298. ; E24 ; 370 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1299. ; E25 ; 369 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1300. ; E26 ; 313 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1301. ; E27 ; 309 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1302. ; E28 ; 308 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1303. ; F1 ; 19 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1304. ; F2 ; 18 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1305. ; F3 ; 8 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1306. ; F4 ; 10 ; 1 ; ~ALTERA_ASDO_DATA1~ / RESERVED_INPUT_WITH_WEAK_PULLUP ; input ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; On ;
  1307. ; F5 ; 9 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1308. ; F6 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1309. ; F7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1310. ; F8 ; 429 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1311. ; F9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1312. ; F10 ; 427 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1313. ; F11 ; 408 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1314. ; F12 ; 406 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1315. ; F13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1316. ; F14 ; 395 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1317. ; F15 ; 367 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1318. ; F16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1319. ; F17 ; 371 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1320. ; F18 ; 353 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1321. ; F19 ; 345 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1322. ; F20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1323. ; F21 ; 333 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1324. ; F22 ; 334 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1325. ; F23 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1326. ; F24 ; 324 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1327. ; F25 ; 323 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1328. ; F26 ; 311 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1329. ; F27 ; 307 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1330. ; F28 ; 306 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1331. ; G1 ; 26 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1332. ; G2 ; 25 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1333. ; G3 ; 13 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1334. ; G4 ; 12 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1335. ; G5 ; 6 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1336. ; G6 ; 5 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1337. ; G7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1338. ; G8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1339. ; G9 ; 425 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1340. ; G10 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1341. ; G11 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1342. ; G12 ; 411 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1343. ; G13 ; 401 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1344. ; G14 ; 394 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1345. ; G15 ; 374 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1346. ; G16 ; 368 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1347. ; G17 ; 360 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1348. ; G18 ; 372 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1349. ; G19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1350. ; G20 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1351. ; G21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1352. ; G22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1353. ; G23 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1354. ; G24 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1355. ; G25 ; 321 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1356. ; G26 ; 320 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1357. ; G27 ; 301 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1358. ; G28 ; 300 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1359. ; H1 ; ; 1 ; VCCIO1 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1360. ; H2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1361. ; H3 ; 15 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1362. ; H4 ; 14 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1363. ; H5 ; 20 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1364. ; H6 ; 11 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1365. ; H7 ; 4 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1366. ; H8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1367. ; H9 ; ; ; GNDA3 ; gnd ; ; ; -- ; ; -- ; -- ;
  1368. ; H10 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1369. ; H11 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1370. ; H12 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1371. ; H13 ; 402 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1372. ; H14 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1373. ; H15 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1374. ; H16 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1375. ; H17 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1376. ; H18 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1377. ; H19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1378. ; H20 ; ; ; GNDA2 ; gnd ; ; ; -- ; ; -- ; -- ;
  1379. ; H21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1380. ; H22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1381. ; H23 ; 319 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1382. ; H24 ; 318 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1383. ; H25 ; 312 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1384. ; H26 ; 310 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1385. ; H27 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1386. ; H28 ; ; 6 ; VCCIO6 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1387. ; J1 ; 53 ; 1 ; PLL_CLKIN ; input ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; Off ;
  1388. ; J2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1389. ; J3 ; 23 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1390. ; J4 ; 22 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1391. ; J5 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1392. ; J6 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1393. ; J7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1394. ; J8 ; ; -- ; VCCA3 ; power ; ; 2.5V ; -- ; ; -- ; -- ;
  1395. ; J9 ; ; ; VCCD_PLL3 ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1396. ; J10 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1397. ; J11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1398. ; J12 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1399. ; J13 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1400. ; J14 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1401. ; J15 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1402. ; J16 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1403. ; J17 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1404. ; J18 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1405. ; J19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1406. ; J20 ; ; ; VCCD_PLL2 ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1407. ; J21 ; ; -- ; VCCA2 ; power ; ; 2.5V ; -- ; ; -- ; -- ;
  1408. ; J22 ; 322 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1409. ; J23 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1410. ; J24 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1411. ; J25 ; 299 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1412. ; J26 ; 298 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1413. ; J27 ; 273 ; 6 ; GND+ ; ; ; ; Row I/O ; ; -- ; -- ;
  1414. ; J28 ; 272 ; 6 ; GND+ ; ; ; ; Row I/O ; ; -- ; -- ;
  1415. ; K1 ; 28 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1416. ; K2 ; 27 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1417. ; K3 ; 30 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1418. ; K4 ; 29 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1419. ; K5 ; ; 1 ; VCCIO1 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1420. ; K6 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1421. ; K7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1422. ; K8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1423. ; K9 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1424. ; K10 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1425. ; K11 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1426. ; K12 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1427. ; K13 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1428. ; K14 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1429. ; K15 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1430. ; K16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1431. ; K17 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1432. ; K18 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1433. ; K19 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1434. ; K20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1435. ; K21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1436. ; K22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1437. ; K23 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1438. ; K24 ; ; 6 ; VCCIO6 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1439. ; K25 ; 305 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1440. ; K26 ; 304 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1441. ; K27 ; 296 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1442. ; K28 ; 295 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1443. ; L1 ; 38 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1444. ; L2 ; 37 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1445. ; L3 ; 32 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1446. ; L4 ; 31 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1447. ; L5 ; 21 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1448. ; L6 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1449. ; L7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1450. ; L8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1451. ; L9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1452. ; L10 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1453. ; L11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1454. ; L12 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1455. ; L13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1456. ; L14 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1457. ; L15 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1458. ; L16 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1459. ; L17 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1460. ; L18 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1461. ; L19 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1462. ; L20 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1463. ; L21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1464. ; L22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1465. ; L23 ; 294 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1466. ; L24 ; 293 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1467. ; L25 ; 303 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1468. ; L26 ; 297 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1469. ; L27 ; 292 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1470. ; L28 ; 291 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1471. ; M1 ; 40 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1472. ; M2 ; 39 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1473. ; M3 ; 34 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1474. ; M4 ; 33 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1475. ; M5 ; 36 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1476. ; M6 ; 24 ; 1 ; ^nSTATUS ; ; ; ; -- ; ; -- ; -- ;
  1477. ; M7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1478. ; M8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1479. ; M9 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1480. ; M10 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1481. ; M11 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1482. ; M12 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1483. ; M13 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1484. ; M14 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1485. ; M15 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1486. ; M16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1487. ; M17 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1488. ; M18 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1489. ; M19 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1490. ; M20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1491. ; M21 ; 302 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1492. ; M22 ; 277 ; 6 ; ^MSEL2 ; ; ; ; -- ; ; -- ; -- ;
  1493. ; M23 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1494. ; M24 ; 281 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1495. ; M25 ; 290 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1496. ; M26 ; 289 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1497. ; M27 ; 288 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1498. ; M28 ; 287 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1499. ; N1 ; ; 1 ; VCCIO1 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1500. ; N2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1501. ; N3 ; 43 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1502. ; N4 ; 35 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1503. ; N5 ; ; 1 ; VCCIO1 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1504. ; N6 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1505. ; N7 ; 45 ; 1 ; ~ALTERA_DATA0~ / RESERVED_INPUT_WITH_WEAK_PULLUP ; input ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; On ;
  1506. ; N8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1507. ; N9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1508. ; N10 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1509. ; N11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1510. ; N12 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1511. ; N13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1512. ; N14 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1513. ; N15 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1514. ; N16 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1515. ; N17 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1516. ; N18 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1517. ; N19 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1518. ; N20 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1519. ; N21 ; 282 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1520. ; N22 ; 275 ; 6 ; ^MSEL0 ; ; ; ; -- ; ; -- ; -- ;
  1521. ; N23 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1522. ; N24 ; ; 6 ; VCCIO6 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1523. ; N25 ; 286 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1524. ; N26 ; 285 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1525. ; N27 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1526. ; N28 ; ; 6 ; VCCIO6 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1527. ; P1 ; 42 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1528. ; P2 ; 41 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1529. ; P3 ; 44 ; 1 ; ~ALTERA_DCLK~ ; output ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; On ;
  1530. ; P4 ; 46 ; 1 ; ^nCONFIG ; ; ; ; -- ; ; -- ; -- ;
  1531. ; P5 ; 48 ; 1 ; #TCK ; input ; ; ; -- ; ; -- ; -- ;
  1532. ; P6 ; 50 ; 1 ; #TDO ; output ; ; ; -- ; ; -- ; -- ;
  1533. ; P7 ; 47 ; 1 ; #TDI ; input ; ; ; -- ; ; -- ; -- ;
  1534. ; P8 ; 49 ; 1 ; #TMS ; input ; ; ; -- ; ; -- ; -- ;
  1535. ; P9 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1536. ; P10 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1537. ; P11 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1538. ; P12 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1539. ; P13 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1540. ; P14 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1541. ; P15 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1542. ; P16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1543. ; P17 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1544. ; P18 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1545. ; P19 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1546. ; P20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1547. ; P21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1548. ; P22 ; 278 ; 6 ; ^MSEL3 ; ; ; ; -- ; ; -- ; -- ;
  1549. ; P23 ; 276 ; 6 ; ^MSEL1 ; ; ; ; -- ; ; -- ; -- ;
  1550. ; P24 ; 274 ; 6 ; ^CONF_DONE ; ; ; ; -- ; ; -- ; -- ;
  1551. ; P25 ; 280 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1552. ; P26 ; 279 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1553. ; P27 ; 284 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1554. ; P28 ; 283 ; 6 ; ~ALTERA_nCEO~ / RESERVED_OUTPUT_OPEN_DRAIN ; output ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; Off ;
  1555. ; R1 ; 57 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1556. ; R2 ; 56 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1557. ; R3 ; 61 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1558. ; R4 ; 62 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1559. ; R5 ; 65 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1560. ; R6 ; 58 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1561. ; R7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1562. ; R8 ; 51 ; 1 ; ^nCE ; ; ; ; -- ; ; -- ; -- ;
  1563. ; R9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1564. ; R10 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1565. ; R11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1566. ; R12 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1567. ; R13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1568. ; R14 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1569. ; R15 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1570. ; R16 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1571. ; R17 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1572. ; R18 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1573. ; R19 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1574. ; R20 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1575. ; R21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1576. ; R22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1577. ; R23 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1578. ; R24 ; 269 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1579. ; R25 ; 266 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1580. ; R26 ; 265 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1581. ; R27 ; 268 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1582. ; R28 ; 267 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1583. ; T1 ; ; 2 ; VCCIO2 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1584. ; T2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1585. ; T3 ; 64 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1586. ; T4 ; 63 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1587. ; T5 ; ; 2 ; VCCIO2 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1588. ; T6 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1589. ; T7 ; 66 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1590. ; T8 ; 88 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1591. ; T9 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1592. ; T10 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1593. ; T11 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1594. ; T12 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1595. ; T13 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1596. ; T14 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1597. ; T15 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1598. ; T16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1599. ; T17 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1600. ; T18 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1601. ; T19 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1602. ; T20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1603. ; T21 ; 264 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1604. ; T22 ; 263 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1605. ; T23 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1606. ; T24 ; ; 5 ; VCCIO5 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1607. ; T25 ; 262 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1608. ; T26 ; 257 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1609. ; T27 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1610. ; T28 ; ; 5 ; VCCIO5 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1611. ; U1 ; 68 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1612. ; U2 ; 67 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1613. ; U3 ; 59 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1614. ; U4 ; 60 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1615. ; U5 ; 78 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1616. ; U6 ; 77 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1617. ; U7 ; 91 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1618. ; U8 ; 92 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1619. ; U9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1620. ; U10 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1621. ; U11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1622. ; U12 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1623. ; U13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1624. ; U14 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1625. ; U15 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1626. ; U16 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1627. ; U17 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1628. ; U18 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1629. ; U19 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1630. ; U20 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1631. ; U21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1632. ; U22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1633. ; U23 ; 251 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1634. ; U24 ; 260 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1635. ; U25 ; 259 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1636. ; U26 ; 258 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1637. ; U27 ; 256 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1638. ; U28 ; 261 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1639. ; V1 ; 72 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1640. ; V2 ; 71 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1641. ; V3 ; 70 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1642. ; V4 ; 69 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1643. ; V5 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1644. ; V6 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1645. ; V7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1646. ; V8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1647. ; V9 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1648. ; V10 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1649. ; V11 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1650. ; V12 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1651. ; V13 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1652. ; V14 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1653. ; V15 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1654. ; V16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1655. ; V17 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1656. ; V18 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1657. ; V19 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1658. ; V20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1659. ; V21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1660. ; V22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1661. ; V23 ; 255 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1662. ; V24 ; 254 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1663. ; V25 ; 253 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1664. ; V26 ; 252 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1665. ; V27 ; 250 ; 5 ; so_io1 ; bidir ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; Off ;
  1666. ; V28 ; 249 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1667. ; W1 ; 76 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1668. ; W2 ; 75 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1669. ; W3 ; 95 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1670. ; W4 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1671. ; W5 ; ; 2 ; VCCIO2 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1672. ; W6 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1673. ; W7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1674. ; W8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1675. ; W9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1676. ; W10 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1677. ; W11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1678. ; W12 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1679. ; W13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1680. ; W14 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1681. ; W15 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1682. ; W16 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1683. ; W17 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1684. ; W18 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1685. ; W19 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1686. ; W20 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1687. ; W21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1688. ; W22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1689. ; W23 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1690. ; W24 ; ; 5 ; VCCIO5 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1691. ; W25 ; 246 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1692. ; W26 ; 245 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1693. ; W27 ; 247 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1694. ; W28 ; 248 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1695. ; Y1 ; 55 ; 2 ; GND+ ; ; ; ; Row I/O ; ; -- ; -- ;
  1696. ; Y2 ; 54 ; 2 ; PIN_HSI ; input ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; Off ;
  1697. ; Y3 ; 80 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1698. ; Y4 ; 79 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1699. ; Y5 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1700. ; Y6 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1701. ; Y7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1702. ; Y8 ; ; -- ; VCCA1 ; power ; ; 2.5V ; -- ; ; -- ; -- ;
  1703. ; Y9 ; ; ; VCCD_PLL1 ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1704. ; Y10 ; 115 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1705. ; Y11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1706. ; Y12 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1707. ; Y13 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1708. ; Y14 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1709. ; Y15 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1710. ; Y16 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1711. ; Y17 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1712. ; Y18 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1713. ; Y19 ; 214 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1714. ; Y20 ; ; ; VCCD_PLL4 ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1715. ; Y21 ; ; -- ; VCCA4 ; power ; ; 2.5V ; -- ; ; -- ; -- ;
  1716. ; Y22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1717. ; Y23 ; 234 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1718. ; Y24 ; 233 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1719. ; Y25 ; 244 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1720. ; Y26 ; 243 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1721. ; Y27 ; 271 ; 5 ; GND+ ; ; ; ; Row I/O ; ; -- ; -- ;
  1722. ; Y28 ; 270 ; 5 ; GND+ ; ; ; ; Row I/O ; ; -- ; -- ;
  1723. +----------+------------+----------+-----------------------------------------------------------+--------+--------------+---------+------------+-----------------+----------+--------------+
  1724. Note: Pin directions (input, output or bidir) are based on device operating in user mode.
  1725. +---------------------------------------------------------------------------------+
  1726. ; PLL Summary ;
  1727. +-------------------------------+-------------------------------------------------+
  1728. ; Name ; altpll:pll_inst|altpll_6o32:auto_generated|pll1 ;
  1729. +-------------------------------+-------------------------------------------------+
  1730. ; SDC pin name ; pll_inst|auto_generated|pll1 ;
  1731. ; PLL mode ; Normal ;
  1732. ; Compensate clock ; clock0 ;
  1733. ; Compensated input/output pins ; -- ;
  1734. ; Switchover type ; -- ;
  1735. ; Input frequency 0 ; 8.0 MHz ;
  1736. ; Input frequency 1 ; -- ;
  1737. ; Nominal PFD frequency ; 8.0 MHz ;
  1738. ; Nominal VCO frequency ; 312.0 MHz ;
  1739. ; VCO post scale K counter ; 2 ;
  1740. ; VCO frequency control ; Auto ;
  1741. ; VCO phase shift step ; 400 ps ;
  1742. ; VCO multiply ; -- ;
  1743. ; VCO divide ; -- ;
  1744. ; Freq min lock ; 7.69 MHz ;
  1745. ; Freq max lock ; 16.67 MHz ;
  1746. ; M VCO Tap ; 0 ;
  1747. ; M Initial ; 1 ;
  1748. ; M value ; 39 ;
  1749. ; N value ; 1 ;
  1750. ; Charge pump current ; setting 1 ;
  1751. ; Loop filter resistance ; setting 20 ;
  1752. ; Loop filter capacitance ; setting 0 ;
  1753. ; Bandwidth ; 450 kHz to 590 kHz ;
  1754. ; Bandwidth type ; Medium ;
  1755. ; Real time reconfigurable ; Off ;
  1756. ; Scan chain MIF file ; -- ;
  1757. ; Preserve PLL counter order ; Off ;
  1758. ; PLL location ; PLL_1 ;
  1759. ; Inclk0 signal ; PLL_CLKIN ;
  1760. ; Inclk1 signal ; -- ;
  1761. ; Inclk0 signal type ; Dedicated Pin ;
  1762. ; Inclk1 signal type ; -- ;
  1763. +-------------------------------+-------------------------------------------------+
  1764. +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1765. ; PLL Usage ;
  1766. +---------------------------------------------------+--------------+------+-----+------------------+-------------+------------------+------------+---------+---------------+------------+---------------+---------+---------+-------------------------------------+
  1767. ; Name ; Output Clock ; Mult ; Div ; Output Frequency ; Phase Shift ; Phase Shift Step ; Duty Cycle ; Counter ; Counter Value ; High / Low ; Cascade Input ; Initial ; VCO Tap ; SDC Pin Name ;
  1768. +---------------------------------------------------+--------------+------+-----+------------------+-------------+------------------+------------+---------+---------------+------------+---------------+---------+---------+-------------------------------------+
  1769. ; altpll:pll_inst|altpll_6o32:auto_generated|clk[0] ; clock0 ; 13 ; 1 ; 104.0 MHz ; 0 (0 ps) ; 15.00 (400 ps) ; 50/50 ; C0 ; 3 ; 2/1 Odd ; -- ; 1 ; 0 ; pll_inst|auto_generated|pll1|clk[0] ;
  1770. +---------------------------------------------------+--------------+------+-----+------------------+-------------+------------------+------------+---------+---------------+------------+---------------+---------+---------+-------------------------------------+
  1771. +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1772. ; Fitter Resource Utilization by Entity ;
  1773. +--------------------------------------------------+-------------+---------------------------+---------------+-------------+------+--------------+---------+-----------+------+--------------+--------------+-------------------+------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+
  1774. ; Compilation Hierarchy Node ; Logic Cells ; Dedicated Logic Registers ; I/O Registers ; Memory Bits ; M9Ks ; DSP Elements ; DSP 9x9 ; DSP 18x18 ; Pins ; Virtual Pins ; LUT-Only LCs ; Register-Only LCs ; LUT/Register LCs ; Full Hierarchy Name ; Library Name ;
  1775. +--------------------------------------------------+-------------+---------------------------+---------------+-------------+------+--------------+---------+-----------+------+--------------+--------------+-------------------+------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+
  1776. ; |example_board ; 1628 (45) ; 484 (0) ; 0 (0) ; 16384 ; 2 ; 0 ; 0 ; 0 ; 15 ; 1 ; 1144 (45) ; 96 (0) ; 388 (1) ; |example_board ; ;
  1777. ; |alta_gclksw:gclksw_inst| ; 0 (0) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 (0) ; 0 (0) ; 0 (0) ; |example_board|alta_gclksw:gclksw_inst ; ;
  1778. ; |alta_rv32:rv32| ; 1 (1) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 1 ; 1 (1) ; 0 (0) ; 0 (0) ; |example_board|alta_rv32:rv32 ; ;
  1779. ; |altpll:pll_inst| ; 1 (0) ; 1 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 (0) ; 0 (0) ; 1 (0) ; |example_board|altpll:pll_inst ; ;
  1780. ; |altpll_6o32:auto_generated| ; 1 (1) ; 1 (1) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 (0) ; 0 (0) ; 1 (1) ; |example_board|altpll:pll_inst|altpll_6o32:auto_generated ; ;
  1781. ; |analog_ip:macro_inst| ; 1581 (10) ; 483 (4) ; 0 (0) ; 16384 ; 2 ; 0 ; 0 ; 0 ; 0 ; 0 ; 1098 (6) ; 96 (0) ; 387 (25) ; |example_board|analog_ip:macro_inst ; ;
  1782. ; |ahb2apb:ahb2apb_inst| ; 81 (81) ; 74 (74) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 6 (6) ; 24 (24) ; 51 (51) ; |example_board|analog_ip:macro_inst|ahb2apb:ahb2apb_inst ; ;
  1783. ; |altsyncram:u_dual_port_ram| ; 0 (0) ; 0 (0) ; 0 (0) ; 16384 ; 2 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 (0) ; 0 (0) ; 0 (0) ; |example_board|analog_ip:macro_inst|altsyncram:u_dual_port_ram ; ;
  1784. ; |altsyncram_sgu1:auto_generated| ; 0 (0) ; 0 (0) ; 0 (0) ; 16384 ; 2 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 (0) ; 0 (0) ; 0 (0) ; |example_board|analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated ; ;
  1785. ; |apb2ram:u_apb2ram| ; 2 (2) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 2 (2) ; 0 (0) ; 0 (0) ; |example_board|analog_ip:macro_inst|apb2ram:u_apb2ram ; ;
  1786. ; |apb_adc:apb_adc0_inst| ; 39 (39) ; 30 (30) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 8 (8) ; 2 (2) ; 29 (29) ; |example_board|analog_ip:macro_inst|apb_adc:apb_adc0_inst ; ;
  1787. ; |apb_dac:apb_dac0_inst| ; 907 (492) ; 62 (62) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 844 (429) ; 3 (3) ; 60 (59) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst ; ;
  1788. ; |lpm_mult:Mult0| ; 149 (0) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 148 (0) ; 0 (0) ; 1 (0) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0 ; ;
  1789. ; |mult_oct:auto_generated| ; 149 (0) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 148 (0) ; 0 (0) ; 1 (0) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated ; ;
  1790. ; |alt_mac_mult:mac_mult1| ; 149 (0) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 148 (0) ; 0 (0) ; 1 (0) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1 ; ;
  1791. ; |mac_mult_iug1:auto_generated| ; 149 (0) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 148 (0) ; 0 (0) ; 1 (0) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated ; ;
  1792. ; |mult_aql:mult1| ; 149 (149) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 148 (148) ; 0 (0) ; 1 (1) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1 ; ;
  1793. ; |lpm_mult:Mult2| ; 124 (0) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 124 (0) ; 0 (0) ; 0 (0) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2 ; ;
  1794. ; |mult_pbt:auto_generated| ; 124 (0) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 124 (0) ; 0 (0) ; 0 (0) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated ; ;
  1795. ; |alt_mac_mult:mac_mult1| ; 124 (0) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 124 (0) ; 0 (0) ; 0 (0) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1 ; ;
  1796. ; |mac_mult_jtg1:auto_generated| ; 124 (0) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 124 (0) ; 0 (0) ; 0 (0) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated ; ;
  1797. ; |mult_bpl:mult1| ; 124 (124) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 124 (124) ; 0 (0) ; 0 (0) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1 ; ;
  1798. ; |lpm_mult:Mult3| ; 143 (0) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 143 (0) ; 0 (0) ; 0 (0) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3 ; ;
  1799. ; |mult_oct:auto_generated| ; 143 (0) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 143 (0) ; 0 (0) ; 0 (0) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated ; ;
  1800. ; |alt_mac_mult:mac_mult1| ; 143 (0) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 143 (0) ; 0 (0) ; 0 (0) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1 ; ;
  1801. ; |mac_mult_iug1:auto_generated| ; 143 (0) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 143 (0) ; 0 (0) ; 0 (0) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated ; ;
  1802. ; |mult_aql:mult1| ; 143 (143) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 143 (143) ; 0 (0) ; 0 (0) ; |example_board|analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1 ; ;
  1803. ; |cfg_reg:cfg_reg_inst| ; 231 (231) ; 164 (164) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 56 (56) ; 53 (53) ; 122 (122) ; |example_board|analog_ip:macro_inst|cfg_reg:cfg_reg_inst ; ;
  1804. ; |trig_ctrl:trig_ctrl_inst| ; 356 (356) ; 149 (149) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 176 (176) ; 14 (14) ; 166 (166) ; |example_board|analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst ; ;
  1805. +--------------------------------------------------+-------------+---------------------------+---------------+-------------+------+--------------+---------+-----------+------+--------------+--------------+-------------------+------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+
  1806. Note: For table entries with two numbers listed, the numbers in parentheses indicate the number of resources of the given type used by the specific entity alone. The numbers listed outside of parentheses indicate the total resources of the given type used by the specific entity and all of its sub-entities in the hierarchy.
  1807. +-----------------------------------------------------------------------------------------------+
  1808. ; Delay Chain Summary ;
  1809. +---------------+----------+---------------+---------------+-----------------------+-----+------+
  1810. ; Name ; Pin Type ; Pad to Core 0 ; Pad to Core 1 ; Pad to Input Register ; TCO ; TCOE ;
  1811. +---------------+----------+---------------+---------------+-----------------------+-----+------+
  1812. ; PIN_HSE ; Input ; -- ; -- ; -- ; -- ; -- ;
  1813. ; SPI0_CSN ; Output ; -- ; -- ; -- ; -- ; -- ;
  1814. ; SPI0_SCK ; Output ; -- ; -- ; -- ; -- ; -- ;
  1815. ; UART0_UARTTXD ; Output ; -- ; -- ; -- ; -- ; -- ;
  1816. ; BAUD_RATE ; Bidir ; -- ; -- ; -- ; -- ; -- ;
  1817. ; GPIO4_1 ; Bidir ; (6) 1314 ps ; -- ; -- ; -- ; -- ;
  1818. ; GPIO4_2 ; Bidir ; (6) 1314 ps ; -- ; -- ; -- ; -- ;
  1819. ; SPI0_SI_IO0 ; Bidir ; (6) 1314 ps ; -- ; -- ; -- ; -- ;
  1820. ; TEST_SINGLE ; Bidir ; -- ; -- ; -- ; -- ; -- ;
  1821. ; UART1_RX ; Bidir ; (6) 1314 ps ; -- ; -- ; -- ; -- ;
  1822. ; UART1_TX ; Bidir ; -- ; -- ; -- ; -- ; -- ;
  1823. ; so_io1 ; Bidir ; -- ; -- ; -- ; -- ; -- ;
  1824. ; UART0_UARTRXD ; Input ; (6) 1314 ps ; -- ; -- ; -- ; -- ;
  1825. ; PIN_HSI ; Input ; (0) 0 ps ; -- ; -- ; -- ; -- ;
  1826. ; PLL_CLKIN ; Input ; -- ; -- ; -- ; -- ; -- ;
  1827. +---------------+----------+---------------+---------------+-----------------------+-----+------+
  1828. +-----------------------------------------------------+
  1829. ; Pad To Core Delay Chain Fanout ;
  1830. +-----------------------+-------------------+---------+
  1831. ; Source Pin / Fanout ; Pad To Core Index ; Setting ;
  1832. +-----------------------+-------------------+---------+
  1833. ; PIN_HSE ; ; ;
  1834. ; BAUD_RATE ; ; ;
  1835. ; GPIO4_1 ; ; ;
  1836. ; - gpio4_io_in[1] ; 0 ; 6 ;
  1837. ; GPIO4_2 ; ; ;
  1838. ; - gpio4_io_in[2] ; 0 ; 6 ;
  1839. ; SPI0_SI_IO0 ; ; ;
  1840. ; - gpio0_io_in[0] ; 0 ; 6 ;
  1841. ; TEST_SINGLE ; ; ;
  1842. ; UART1_RX ; ; ;
  1843. ; - gpio6_io_in[3] ; 0 ; 6 ;
  1844. ; UART1_TX ; ; ;
  1845. ; so_io1 ; ; ;
  1846. ; UART0_UARTRXD ; ; ;
  1847. ; - gpio6_io_in[1] ; 0 ; 6 ;
  1848. ; PIN_HSI ; ; ;
  1849. ; PLL_CLKIN ; ; ;
  1850. +-----------------------+-------------------+---------+
  1851. +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1852. ; Control Signals ;
  1853. +-------------------------------------------------------------------+--------------------+---------+---------------+--------+----------------------+------------------+---------------------------+---------------+---------------+---------------------------------------------------+---------------+-----------------------+-----------------------+
  1854. ; Name ; Location ; Fan-Out ; Usage ; Global ; Global Resource Used ; Global Line Name ; Enable Signal Source Name ; Input Clock 0 ; Input Clock 1 ; Input Clock 2 ; Input Clock 3 ; Clock Select 0 ; Clock Select 1 ;
  1855. +-------------------------------------------------------------------+--------------------+---------+---------------+--------+----------------------+------------------+---------------------------+---------------+---------------+---------------------------------------------------+---------------+-----------------------+-----------------------+
  1856. ; PIN_HSI ; PIN_Y2 ; 1 ; Clock ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1857. ; PLL_CLKIN ; PIN_J1 ; 1 ; Clock ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1858. ; PLL_ENABLE ; LCCOMB_X46_Y1_N10 ; 2 ; Async. clear ; yes ; Global Clock ; GCLK17 ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1859. ; alta_gclksw:gclksw_inst|clkout ; CLKCTRL_G3 ; 486 ; Clock ; yes ; Global Clock ; GCLK3 ; VCC ; PIN_HSI ; -- ; altpll:pll_inst|altpll_6o32:auto_generated|clk[0] ; -- ; sys_ctrl_clkSource[0] ; sys_ctrl_clkSource[1] ;
  1860. ; altpll:pll_inst|altpll_6o32:auto_generated|clk[0] ; PLL_1 ; 1 ; Clock ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1861. ; altpll:pll_inst|altpll_6o32:auto_generated|pll1~LOCKED ; PLL_1 ; 2 ; Clock ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1862. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|always0~0 ; LCCOMB_X59_Y12_N20 ; 17 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1863. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|comb~0 ; LCCOMB_X58_Y12_N30 ; 32 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1864. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[7]~0 ; LCCOMB_X58_Y12_N18 ; 18 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1865. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[9]~11 ; LCCOMB_X57_Y12_N10 ; 10 ; Sync. clear ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1866. ; analog_ip:macro_inst|always0~0 ; LCCOMB_X58_Y12_N26 ; 4 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1867. ; analog_ip:macro_inst|apb2ram:u_apb2ram|ram_rden~0 ; LCCOMB_X57_Y9_N4 ; 2 ; Read enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1868. ; analog_ip:macro_inst|apb2ram:u_apb2ram|ram_wren~0 ; LCCOMB_X57_Y9_N6 ; 2 ; Write enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1869. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|always1~0 ; LCCOMB_X56_Y4_N30 ; 12 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1870. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[7]~18 ; LCCOMB_X61_Y10_N16 ; 16 ; Sync. clear ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1871. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|always0~0 ; LCCOMB_X61_Y9_N26 ; 32 ; Sync. clear ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1872. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_clk_div[7]~0 ; LCCOMB_X60_Y9_N0 ; 8 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1873. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_en ; FF_X60_Y3_N17 ; 14 ; Sync. clear ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1874. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_en~0 ; LCCOMB_X60_Y9_N30 ; 5 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1875. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_run~0 ; LCCOMB_X61_Y9_N28 ; 2 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1876. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|always1~2 ; LCCOMB_X59_Y12_N10 ; 32 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1877. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|dac_en~2 ; LCCOMB_X61_Y9_N20 ; 2 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1878. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|duty_cycle[0]~0 ; LCCOMB_X59_Y11_N30 ; 8 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1879. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[31]~0 ; LCCOMB_X57_Y10_N28 ; 32 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1880. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|min_vol[0]~0 ; LCCOMB_X57_Y11_N0 ; 20 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1881. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[0]~0 ; LCCOMB_X60_Y9_N4 ; 16 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1882. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_mode[1]~0 ; LCCOMB_X59_Y8_N20 ; 9 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1883. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[0]~2 ; LCCOMB_X59_Y8_N26 ; 16 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1884. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_threshold[11]~0 ; LCCOMB_X59_Y8_N14 ; 12 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1885. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|wave_type[1]~0 ; LCCOMB_X57_Y10_N4 ; 2 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1886. ; analog_ip:macro_inst|mem_apb_psel ; LCCOMB_X59_Y12_N14 ; 32 ; Sync. load ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1887. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev[10]~1 ; LCCOMB_X61_Y6_N12 ; 12 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1888. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_restart_ris ; LCCOMB_X61_Y6_N0 ; 28 ; Sync. clear ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1889. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|always11~2 ; LCCOMB_X59_Y12_N30 ; 10 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1890. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[7]~35 ; LCCOMB_X58_Y6_N20 ; 10 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1891. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[7]~36 ; LCCOMB_X58_Y6_N26 ; 10 ; Sync. clear ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1892. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[8]~50 ; LCCOMB_X60_Y3_N4 ; 16 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1893. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[8]~51 ; LCCOMB_X60_Y3_N0 ; 16 ; Sync. clear ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1894. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[2]~15 ; LCCOMB_X59_Y5_N22 ; 11 ; Sync. clear ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1895. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[2]~17 ; LCCOMB_X59_Y5_N28 ; 11 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1896. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|post_trig_cnt[8]~11 ; LCCOMB_X61_Y6_N10 ; 9 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1897. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[12]~51 ; LCCOMB_X59_Y7_N14 ; 16 ; Sync. clear ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1898. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[12]~54 ; LCCOMB_X59_Y7_N28 ; 16 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1899. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_addr[6]~12 ; LCCOMB_X61_Y6_N16 ; 10 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1900. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wren_b ; FF_X54_Y4_N31 ; 2 ; Write enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1901. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wren_b~0 ; LCCOMB_X61_Y6_N18 ; 13 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1902. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr[2]~2 ; LCCOMB_X60_Y5_N6 ; 11 ; Clock enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1903. ; gpio0_io_out_en[0] ; LCCOMB_X57_Y7_N28 ; 1 ; Output enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1904. ; gpio4_io_out_en[1] ; LCCOMB_X45_Y4_N28 ; 1 ; Output enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1905. ; gpio4_io_out_en[2] ; LCCOMB_X45_Y4_N30 ; 1 ; Output enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1906. ; gpio4_io_out_en[5] ; LCCOMB_X45_Y3_N4 ; 1 ; Output enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1907. ; gpio4_io_out_en[6] ; LCCOMB_X45_Y3_N6 ; 1 ; Output enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1908. ; gpio7_io_out_en[6] ; LCCOMB_X50_Y4_N20 ; 1 ; Output enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1909. ; gpio8_io_out_en[0] ; LCCOMB_X51_Y4_N18 ; 1 ; Output enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1910. ; sys_resetn ; LCCOMB_X53_Y1_N4 ; 453 ; Async. clear ; yes ; Global Clock ; GCLK16 ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1911. +-------------------------------------------------------------------+--------------------+---------+---------------+--------+----------------------+------------------+---------------------------+---------------+---------------+---------------------------------------------------+---------------+-----------------------+-----------------------+
  1912. +-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1913. ; Global & Other Fast Signals ;
  1914. +--------------------------------+-------------------+---------+--------------------------------------+----------------------+------------------+---------------------------+---------------+---------------+---------------------------------------------------+---------------+-----------------------+-----------------------+
  1915. ; Name ; Location ; Fan-Out ; Fan-Out Using Intentional Clock Skew ; Global Resource Used ; Global Line Name ; Enable Signal Source Name ; Input Clock 0 ; Input Clock 1 ; Input Clock 2 ; Input Clock 3 ; Clock Select 0 ; Clock Select 1 ;
  1916. +--------------------------------+-------------------+---------+--------------------------------------+----------------------+------------------+---------------------------+---------------+---------------+---------------------------------------------------+---------------+-----------------------+-----------------------+
  1917. ; PLL_ENABLE ; LCCOMB_X46_Y1_N10 ; 2 ; 0 ; Global Clock ; GCLK17 ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1918. ; alta_gclksw:gclksw_inst|clkout ; CLKCTRL_G3 ; 486 ; 103 ; Global Clock ; GCLK3 ; VCC ; PIN_HSI ; -- ; altpll:pll_inst|altpll_6o32:auto_generated|clk[0] ; -- ; sys_ctrl_clkSource[0] ; sys_ctrl_clkSource[1] ;
  1919. ; sys_resetn ; LCCOMB_X53_Y1_N4 ; 453 ; 0 ; Global Clock ; GCLK16 ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1920. +--------------------------------+-------------------+---------+--------------------------------------+----------------------+------------------+---------------------------+---------------+---------------+---------------------------------------------------+---------------+-----------------------+-----------------------+
  1921. +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1922. ; Non-Global High Fan-Out Signals ;
  1923. +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------+
  1924. ; Name ; Fan-Out ;
  1925. +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------+
  1926. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_r[1] ; 150 ;
  1927. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_r[3] ; 140 ;
  1928. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_r[2] ; 132 ;
  1929. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_r[4] ; 126 ;
  1930. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_r[5] ; 122 ;
  1931. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_r[7] ; 111 ;
  1932. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_r[0] ; 110 ;
  1933. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_r[6] ; 108 ;
  1934. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[2] ; 44 ;
  1935. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[3] ; 44 ;
  1936. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_rst_sync2 ; 33 ;
  1937. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_r[9] ; 33 ;
  1938. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|always1~2 ; 32 ;
  1939. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_rst_sync3 ; 32 ;
  1940. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[31]~0 ; 32 ;
  1941. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|always0~0 ; 32 ;
  1942. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|comb~0 ; 32 ;
  1943. ; analog_ip:macro_inst|mem_apb_psel ; 32 ;
  1944. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|diff[9]~18 ; 32 ;
  1945. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|diff[8]~16 ; 32 ;
  1946. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|diff[7]~14 ; 32 ;
  1947. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|diff[6]~12 ; 32 ;
  1948. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|diff[5]~10 ; 32 ;
  1949. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|diff[4]~8 ; 32 ;
  1950. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|diff[3]~6 ; 32 ;
  1951. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|diff[2]~4 ; 32 ;
  1952. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|diff[1]~2 ; 32 ;
  1953. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|diff[0]~0 ; 32 ;
  1954. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_restart_ris ; 28 ;
  1955. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal10~2 ; 27 ;
  1956. ; ~GND ; 23 ;
  1957. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_r[8] ; 21 ;
  1958. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|le6a[11] ; 21 ;
  1959. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|le5a[11] ; 21 ;
  1960. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|le7a[11] ; 21 ;
  1961. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|min_vol[0]~0 ; 20 ;
  1962. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|cs2a[4]~2 ; 20 ;
  1963. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|_~9 ; 20 ;
  1964. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le4a[11] ; 20 ;
  1965. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal9~0 ; 19 ;
  1966. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[7]~0 ; 18 ;
  1967. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|cs3a[1]~2 ; 18 ;
  1968. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|cs3a[2]~1 ; 18 ;
  1969. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|cs3a[3]~0 ; 18 ;
  1970. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|always0~0 ; 17 ;
  1971. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[8]~51 ; 16 ;
  1972. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[0]~2 ; 16 ;
  1973. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[12]~54 ; 16 ;
  1974. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[12]~51 ; 16 ;
  1975. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[8]~50 ; 16 ;
  1976. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[0]~0 ; 16 ;
  1977. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[7]~18 ; 16 ;
  1978. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal5~0 ; 16 ;
  1979. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal0~2 ; 16 ;
  1980. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[29]~13 ; 16 ;
  1981. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|write_strobe ; 15 ;
  1982. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal10~0 ; 15 ;
  1983. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|Mux7~2 ; 15 ;
  1984. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|Mux7~1 ; 15 ;
  1985. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|wave_type[0] ; 15 ;
  1986. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|wave_type[1] ; 15 ;
  1987. ; alta_rv32:rv32|~GND ; 14 ;
  1988. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|curr_state.SAMPLING ; 14 ;
  1989. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_time_slot[4] ; 14 ;
  1990. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_time_slot[3] ; 14 ;
  1991. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_time_slot[2] ; 14 ;
  1992. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_time_slot[0] ; 14 ;
  1993. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_en ; 14 ;
  1994. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wren_b~0 ; 13 ;
  1995. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_time_slot[1] ; 13 ;
  1996. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le5a[11] ; 13 ;
  1997. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le7a[11] ; 13 ;
  1998. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|cs2a[1]~0 ; 13 ;
  1999. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[1] ; 13 ;
  2000. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[0] ; 13 ;
  2001. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_en~_wirecell ; 12 ;
  2002. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|always1~0 ; 12 ;
  2003. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev[10]~1 ; 12 ;
  2004. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_threshold[11]~0 ; 12 ;
  2005. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal3~0 ; 12 ;
  2006. ; analog_ip:macro_inst|pr_select[2] ; 12 ;
  2007. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|always0~0 ; 12 ;
  2008. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[2]~17 ; 11 ;
  2009. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[2]~15 ; 11 ;
  2010. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr[2]~2 ; 11 ;
  2011. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|always9~0 ; 11 ;
  2012. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal2~1 ; 11 ;
  2013. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|cs3a[3]~2 ; 11 ;
  2014. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~336 ; 11 ;
  2015. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|cs2a[3]~5 ; 11 ;
  2016. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~332 ; 11 ;
  2017. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le6a[11] ; 11 ;
  2018. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[7]~36 ; 10 ;
  2019. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|always11~2 ; 10 ;
  2020. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[7]~35 ; 10 ;
  2021. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_addr[6]~12 ; 10 ;
  2022. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[9]~11 ; 10 ;
  2023. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~338 ; 10 ;
  2024. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[14] ; 10 ;
  2025. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[5] ; 10 ;
  2026. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[4] ; 10 ;
  2027. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|Mux7~3 ; 10 ;
  2028. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|Mux7~0 ; 10 ;
  2029. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[4] ; 10 ;
  2030. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[3] ; 10 ;
  2031. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[2] ; 10 ;
  2032. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|post_trig_cnt[8]~11 ; 9 ;
  2033. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_mode[1]~0 ; 9 ;
  2034. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal1~1 ; 9 ;
  2035. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal4~2 ; 9 ;
  2036. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|cs3a[2]~1 ; 9 ;
  2037. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|cs3a[1]~0 ; 9 ;
  2038. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|penable ; 9 ;
  2039. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|psel ; 9 ;
  2040. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[7] ; 9 ;
  2041. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[6] ; 9 ;
  2042. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[5] ; 9 ;
  2043. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|duty_cycle[0]~0 ; 8 ;
  2044. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_clk_div[7]~0 ; 8 ;
  2045. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal11~0 ; 8 ;
  2046. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal0~1 ; 8 ;
  2047. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal0~0 ; 8 ;
  2048. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~2 ; 8 ;
  2049. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|cs2a[2]~0 ; 8 ;
  2050. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|curr_state.PRE_FILL ; 7 ;
  2051. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|curr_state.DONE ; 7 ;
  2052. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal4~0 ; 7 ;
  2053. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_addr[9] ; 7 ;
  2054. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[8] ; 7 ;
  2055. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|curr_state.POST_TRIG ; 6 ;
  2056. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|edge_trigger~2 ; 6 ;
  2057. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|single_shot_lock ; 6 ;
  2058. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal0~3 ; 6 ;
  2059. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_run ; 6 ;
  2060. ; analog_ip:macro_inst|apb_prdata[10]~0 ; 6 ;
  2061. ; analog_ip:macro_inst|mem_apb_psel~0 ; 6 ;
  2062. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[1] ; 6 ;
  2063. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_addr[8] ; 6 ;
  2064. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_addr[7] ; 6 ;
  2065. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_addr[6] ; 6 ;
  2066. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_addr[5] ; 6 ;
  2067. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_addr[4] ; 6 ;
  2068. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_addr[3] ; 6 ;
  2069. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_addr[2] ; 6 ;
  2070. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_addr[1] ; 6 ;
  2071. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_addr[0] ; 6 ;
  2072. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[9] ; 6 ;
  2073. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_active ; 5 ;
  2074. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trig_hit_comb~5 ; 5 ;
  2075. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector0~7 ; 5 ;
  2076. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector0~6 ; 5 ;
  2077. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|curr_state.IDLE ; 5 ;
  2078. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_threshold[11] ; 5 ;
  2079. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_threshold[10] ; 5 ;
  2080. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_threshold[9] ; 5 ;
  2081. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_threshold[8] ; 5 ;
  2082. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_threshold[7] ; 5 ;
  2083. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_threshold[6] ; 5 ;
  2084. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_threshold[5] ; 5 ;
  2085. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_threshold[4] ; 5 ;
  2086. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_threshold[3] ; 5 ;
  2087. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_threshold[2] ; 5 ;
  2088. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_threshold[1] ; 5 ;
  2089. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_threshold[0] ; 5 ;
  2090. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_edge[0] ; 5 ;
  2091. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_en~0 ; 5 ;
  2092. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|pwrite ; 5 ;
  2093. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[15] ; 5 ;
  2094. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[13] ; 5 ;
  2095. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[12] ; 5 ;
  2096. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|hreadyout ; 5 ;
  2097. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[11] ; 5 ;
  2098. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[10] ; 5 ;
  2099. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|min_vol_r[9] ; 5 ;
  2100. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|min_vol_r[8] ; 5 ;
  2101. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|min_vol_r[7] ; 5 ;
  2102. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|min_vol_r[6] ; 5 ;
  2103. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|min_vol_r[5] ; 5 ;
  2104. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|min_vol_r[4] ; 5 ;
  2105. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|min_vol_r[3] ; 5 ;
  2106. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|min_vol_r[2] ; 5 ;
  2107. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|min_vol_r[1] ; 5 ;
  2108. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|cs2a[1]~0 ; 5 ;
  2109. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~233 ; 5 ;
  2110. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~78 ; 5 ;
  2111. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|min_vol_r[0] ; 5 ;
  2112. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|~QUARTUS_CREATED_GND~I ; 4 ;
  2113. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_level ; 4 ;
  2114. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|apb_db[0] ; 4 ;
  2115. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|apb_db[1] ; 4 ;
  2116. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|apb_db[2] ; 4 ;
  2117. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|apb_db[3] ; 4 ;
  2118. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|apb_db[4] ; 4 ;
  2119. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|apb_db[5] ; 4 ;
  2120. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|apb_db[6] ; 4 ;
  2121. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|apb_db[7] ; 4 ;
  2122. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|apb_db[8] ; 4 ;
  2123. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|apb_db[9] ; 4 ;
  2124. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|apb_db[10] ; 4 ;
  2125. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|apb_db[11] ; 4 ;
  2126. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_trigger ; 4 ;
  2127. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trig_hit_comb~3 ; 4 ;
  2128. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector13~1 ; 4 ;
  2129. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_edge[1] ; 4 ;
  2130. ; analog_ip:macro_inst|always0~0 ; 4 ;
  2131. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|pvalid ; 4 ;
  2132. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|apbState.apbSetup ; 4 ;
  2133. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[15] ; 4 ;
  2134. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[14] ; 4 ;
  2135. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[13] ; 4 ;
  2136. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[12] ; 4 ;
  2137. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~255 ; 4 ;
  2138. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~21 ; 4 ;
  2139. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~6 ; 4 ;
  2140. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|max_vol_r[0] ; 4 ;
  2141. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|max_vol_r[1] ; 4 ;
  2142. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|max_vol_r[2] ; 4 ;
  2143. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|max_vol_r[3] ; 4 ;
  2144. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|max_vol_r[4] ; 4 ;
  2145. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|max_vol_r[5] ; 4 ;
  2146. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|max_vol_r[6] ; 4 ;
  2147. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|max_vol_r[7] ; 4 ;
  2148. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|max_vol_r[8] ; 4 ;
  2149. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|max_vol_r[9] ; 4 ;
  2150. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|LessThan5~22 ; 4 ;
  2151. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|LessThan3~22 ; 4 ;
  2152. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk ; 4 ;
  2153. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|sample_valid ; 3 ;
  2154. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|always5~2 ; 3 ;
  2155. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|LessThan1~2 ; 3 ;
  2156. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_mode[1] ; 3 ;
  2157. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_mode[0] ; 3 ;
  2158. ; PLL_LOCK ; 3 ;
  2159. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|pdone ; 3 ;
  2160. ; analog_ip:macro_inst|ShiftLeft0~0 ; 3 ;
  2161. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[6] ; 3 ;
  2162. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[7] ; 3 ;
  2163. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[8] ; 3 ;
  2164. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[9] ; 3 ;
  2165. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|paddr[10] ; 3 ;
  2166. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|cs2a[2]~2 ; 3 ;
  2167. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~261 ; 3 ;
  2168. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~260 ; 3 ;
  2169. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~254 ; 3 ;
  2170. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~38 ; 3 ;
  2171. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~19 ; 3 ;
  2172. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|dac_en ; 3 ;
  2173. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Add3~32 ; 3 ;
  2174. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|LessThan6~30 ; 3 ;
  2175. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|op_5~36 ; 3 ;
  2176. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|op_5~34 ; 3 ;
  2177. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|op_5~32 ; 3 ;
  2178. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|op_5~30 ; 3 ;
  2179. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|op_5~28 ; 3 ;
  2180. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|op_5~26 ; 3 ;
  2181. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|op_5~24 ; 3 ;
  2182. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|op_5~22 ; 3 ;
  2183. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|op_5~20 ; 3 ;
  2184. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|op_5~18 ; 3 ;
  2185. ; ~VCC ; 2 ;
  2186. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~346 ; 2 ;
  2187. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|dac_en~2 ; 2 ;
  2188. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[12]~53 ; 2 ;
  2189. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|edge_trigger~4 ; 2 ;
  2190. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|edge_trigger~3 ; 2 ;
  2191. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[12]~52 ; 2 ;
  2192. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Decoder1~0 ; 2 ;
  2193. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|apb_eoc ; 2 ;
  2194. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[12]~18 ; 2 ;
  2195. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|always4~1 ; 2 ;
  2196. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[2]~13 ; 2 ;
  2197. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[7]~32 ; 2 ;
  2198. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector1~0 ; 2 ;
  2199. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector0~5 ; 2 ;
  2200. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector0~4 ; 2 ;
  2201. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector0~2 ; 2 ;
  2202. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector0~0 ; 2 ;
  2203. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_eoc_sync2 ; 2 ;
  2204. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|always1~1 ; 2 ;
  2205. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_eoc_sync1 ; 2 ;
  2206. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|always4~0 ; 2 ;
  2207. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev[0] ; 2 ;
  2208. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev[1] ; 2 ;
  2209. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev[2] ; 2 ;
  2210. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev[3] ; 2 ;
  2211. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev[4] ; 2 ;
  2212. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev[5] ; 2 ;
  2213. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev[6] ; 2 ;
  2214. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev[7] ; 2 ;
  2215. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev[8] ; 2 ;
  2216. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev[9] ; 2 ;
  2217. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev[10] ; 2 ;
  2218. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev[11] ; 2 ;
  2219. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|LessThan7~3 ; 2 ;
  2220. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_run~0 ; 2 ;
  2221. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[15] ; 2 ;
  2222. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[14] ; 2 ;
  2223. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[13] ; 2 ;
  2224. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[12] ; 2 ;
  2225. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[11] ; 2 ;
  2226. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|prdata[10]~2 ; 2 ;
  2227. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|prdata[10]~1 ; 2 ;
  2228. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|prdata[10]~0 ; 2 ;
  2229. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[10] ; 2 ;
  2230. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[9] ; 2 ;
  2231. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr[8] ; 2 ;
  2232. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[8] ; 2 ;
  2233. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr[7] ; 2 ;
  2234. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[7] ; 2 ;
  2235. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr[6] ; 2 ;
  2236. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[6] ; 2 ;
  2237. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr[5] ; 2 ;
  2238. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[5] ; 2 ;
  2239. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr[4] ; 2 ;
  2240. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[4] ; 2 ;
  2241. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr[3] ; 2 ;
  2242. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[3] ; 2 ;
  2243. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr[2] ; 2 ;
  2244. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[2] ; 2 ;
  2245. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr[1] ; 2 ;
  2246. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[1] ; 2 ;
  2247. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_restart ; 2 ;
  2248. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wren_b ; 2 ;
  2249. ; analog_ip:macro_inst|apb2ram:u_apb2ram|ram_rden~0 ; 2 ;
  2250. ; analog_ip:macro_inst|apb2ram:u_apb2ram|ram_wren~0 ; 2 ;
  2251. ; analog_ip:macro_inst|ShiftLeft0~1 ; 2 ;
  2252. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trig_done ; 2 ;
  2253. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr[0] ; 2 ;
  2254. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[0] ; 2 ;
  2255. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal8~0 ; 2 ;
  2256. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|dac_run ; 2 ;
  2257. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[0] ; 2 ;
  2258. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[1] ; 2 ;
  2259. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[2] ; 2 ;
  2260. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[3] ; 2 ;
  2261. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[4] ; 2 ;
  2262. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[5] ; 2 ;
  2263. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[6] ; 2 ;
  2264. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[7] ; 2 ;
  2265. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[8] ; 2 ;
  2266. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[9] ; 2 ;
  2267. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[10] ; 2 ;
  2268. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[11] ; 2 ;
  2269. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[12] ; 2 ;
  2270. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[13] ; 2 ;
  2271. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[14] ; 2 ;
  2272. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[15] ; 2 ;
  2273. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[16] ; 2 ;
  2274. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[17] ; 2 ;
  2275. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[18] ; 2 ;
  2276. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[19] ; 2 ;
  2277. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[20] ; 2 ;
  2278. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[21] ; 2 ;
  2279. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[22] ; 2 ;
  2280. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[23] ; 2 ;
  2281. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[24] ; 2 ;
  2282. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[25] ; 2 ;
  2283. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[26] ; 2 ;
  2284. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[27] ; 2 ;
  2285. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[28] ; 2 ;
  2286. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[29] ; 2 ;
  2287. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[30] ; 2 ;
  2288. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[31] ; 2 ;
  2289. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|apbState.apbIdle ; 2 ;
  2290. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|Equal0~6 ; 2 ;
  2291. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|Equal0~5 ; 2 ;
  2292. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|Equal0~4 ; 2 ;
  2293. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_clk_div[7] ; 2 ;
  2294. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_clk_div[6] ; 2 ;
  2295. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_clk_div[5] ; 2 ;
  2296. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_clk_div[4] ; 2 ;
  2297. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_clk_div[3] ; 2 ;
  2298. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_clk_div[2] ; 2 ;
  2299. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_clk_div[1] ; 2 ;
  2300. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_clk_div[0] ; 2 ;
  2301. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|hdone ; 2 ;
  2302. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[14]~12 ; 2 ;
  2303. ; analog_ip:macro_inst|pr_select[1] ; 2 ;
  2304. ; analog_ip:macro_inst|pr_select[3] ; 2 ;
  2305. ; analog_ip:macro_inst|pr_select[0] ; 2 ;
  2306. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|min_vol[9] ; 2 ;
  2307. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|min_vol[8] ; 2 ;
  2308. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|min_vol[7] ; 2 ;
  2309. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|min_vol[6] ; 2 ;
  2310. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|min_vol[5] ; 2 ;
  2311. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|min_vol[4] ; 2 ;
  2312. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|min_vol[3] ; 2 ;
  2313. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|min_vol[2] ; 2 ;
  2314. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|min_vol[1] ; 2 ;
  2315. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~339 ; 2 ;
  2316. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~298 ; 2 ;
  2317. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~290 ; 2 ;
  2318. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~287 ; 2 ;
  2319. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~286 ; 2 ;
  2320. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~285 ; 2 ;
  2321. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~279 ; 2 ;
  2322. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|max_vol[0] ; 2 ;
  2323. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|max_vol[1] ; 2 ;
  2324. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|max_vol[2] ; 2 ;
  2325. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|max_vol[3] ; 2 ;
  2326. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|max_vol[4] ; 2 ;
  2327. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|max_vol[5] ; 2 ;
  2328. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|max_vol[6] ; 2 ;
  2329. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|max_vol[7] ; 2 ;
  2330. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|max_vol[8] ; 2 ;
  2331. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|max_vol[9] ; 2 ;
  2332. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|wave_type[1]~0 ; 2 ;
  2333. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|min_vol[0] ; 2 ;
  2334. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_chnl_sel[3] ; 2 ;
  2335. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_chnl_sel[2] ; 2 ;
  2336. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_chnl_sel[0] ; 2 ;
  2337. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[25] ; 2 ;
  2338. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[24] ; 2 ;
  2339. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[23] ; 2 ;
  2340. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[22] ; 2 ;
  2341. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[21] ; 2 ;
  2342. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[20] ; 2 ;
  2343. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[19] ; 2 ;
  2344. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[18] ; 2 ;
  2345. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[17] ; 2 ;
  2346. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|prdata[16] ; 2 ;
  2347. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~273 ; 2 ;
  2348. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~268 ; 2 ;
  2349. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~263 ; 2 ;
  2350. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~247 ; 2 ;
  2351. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~246 ; 2 ;
  2352. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~245 ; 2 ;
  2353. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~244 ; 2 ;
  2354. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~238 ; 2 ;
  2355. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~237 ; 2 ;
  2356. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~203 ; 2 ;
  2357. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~196 ; 2 ;
  2358. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~193 ; 2 ;
  2359. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~192 ; 2 ;
  2360. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~191 ; 2 ;
  2361. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~185 ; 2 ;
  2362. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~163 ; 2 ;
  2363. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~145 ; 2 ;
  2364. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~142 ; 2 ;
  2365. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~141 ; 2 ;
  2366. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~138 ; 2 ;
  2367. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~135 ; 2 ;
  2368. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~134 ; 2 ;
  2369. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~128 ; 2 ;
  2370. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~125 ; 2 ;
  2371. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~124 ; 2 ;
  2372. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~123 ; 2 ;
  2373. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~111 ; 2 ;
  2374. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~110 ; 2 ;
  2375. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~103 ; 2 ;
  2376. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~96 ; 2 ;
  2377. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~89 ; 2 ;
  2378. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~83 ; 2 ;
  2379. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~80 ; 2 ;
  2380. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~79 ; 2 ;
  2381. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~76 ; 2 ;
  2382. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~72 ; 2 ;
  2383. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~51 ; 2 ;
  2384. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~44 ; 2 ;
  2385. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~43 ; 2 ;
  2386. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~42 ; 2 ;
  2387. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~39 ; 2 ;
  2388. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~30 ; 2 ;
  2389. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~25 ; 2 ;
  2390. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~24 ; 2 ;
  2391. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~23 ; 2 ;
  2392. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~20 ; 2 ;
  2393. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~18 ; 2 ;
  2394. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~17 ; 2 ;
  2395. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~8 ; 2 ;
  2396. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~4 ; 2 ;
  2397. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~3 ; 2 ;
  2398. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[0] ; 2 ;
  2399. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[1] ; 2 ;
  2400. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[2] ; 2 ;
  2401. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[3] ; 2 ;
  2402. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[4] ; 2 ;
  2403. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[5] ; 2 ;
  2404. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[6] ; 2 ;
  2405. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[7] ; 2 ;
  2406. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[8] ; 2 ;
  2407. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[9] ; 2 ;
  2408. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[10] ; 2 ;
  2409. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[11] ; 2 ;
  2410. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[12] ; 2 ;
  2411. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[13] ; 2 ;
  2412. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[14] ; 2 ;
  2413. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[15] ; 2 ;
  2414. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|post_trig_cnt[7] ; 2 ;
  2415. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|post_trig_cnt[6] ; 2 ;
  2416. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|post_trig_cnt[5] ; 2 ;
  2417. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|post_trig_cnt[4] ; 2 ;
  2418. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|post_trig_cnt[8] ; 2 ;
  2419. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|post_trig_cnt[3] ; 2 ;
  2420. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|post_trig_cnt[2] ; 2 ;
  2421. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|post_trig_cnt[1] ; 2 ;
  2422. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|post_trig_cnt[0] ; 2 ;
  2423. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Add0~32 ; 2 ;
  2424. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|LessThan0~30 ; 2 ;
  2425. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[0] ; 2 ;
  2426. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[1] ; 2 ;
  2427. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[2] ; 2 ;
  2428. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[3] ; 2 ;
  2429. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[4] ; 2 ;
  2430. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[5] ; 2 ;
  2431. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[6] ; 2 ;
  2432. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[7] ; 2 ;
  2433. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[8] ; 2 ;
  2434. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[9] ; 2 ;
  2435. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[10] ; 2 ;
  2436. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[11] ; 2 ;
  2437. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[12] ; 2 ;
  2438. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[13] ; 2 ;
  2439. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[14] ; 2 ;
  2440. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|eoc_cnt[15] ; 2 ;
  2441. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|LessThan4~22 ; 2 ;
  2442. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|LessThan2~22 ; 2 ;
  2443. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[10] ; 2 ;
  2444. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[9] ; 2 ;
  2445. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[8] ; 2 ;
  2446. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[7] ; 2 ;
  2447. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[6] ; 2 ;
  2448. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[5] ; 2 ;
  2449. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[4] ; 2 ;
  2450. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[3] ; 2 ;
  2451. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[2] ; 2 ;
  2452. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[1] ; 2 ;
  2453. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[0] ; 2 ;
  2454. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[7] ; 2 ;
  2455. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[6] ; 2 ;
  2456. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[5] ; 2 ;
  2457. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[4] ; 2 ;
  2458. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[8] ; 2 ;
  2459. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[3] ; 2 ;
  2460. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[2] ; 2 ;
  2461. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[1] ; 2 ;
  2462. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[0] ; 2 ;
  2463. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[9] ; 2 ;
  2464. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[15] ; 2 ;
  2465. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[14] ; 2 ;
  2466. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[13] ; 2 ;
  2467. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[12] ; 2 ;
  2468. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[11] ; 2 ;
  2469. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[10] ; 2 ;
  2470. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[9] ; 2 ;
  2471. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[8] ; 2 ;
  2472. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[6] ; 2 ;
  2473. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[7] ; 2 ;
  2474. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[4] ; 2 ;
  2475. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[5] ; 2 ;
  2476. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[2] ; 2 ;
  2477. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[3] ; 2 ;
  2478. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[1] ; 2 ;
  2479. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk_counter[0] ; 2 ;
  2480. ; altpll:pll_inst|altpll_6o32:auto_generated|pll1~LOCKED ; 2 ;
  2481. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[10] ; 2 ;
  2482. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[11] ; 2 ;
  2483. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[12] ; 2 ;
  2484. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[13] ; 2 ;
  2485. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[14] ; 2 ;
  2486. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[15] ; 2 ;
  2487. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[9] ; 2 ;
  2488. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[1] ; 2 ;
  2489. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[2] ; 2 ;
  2490. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[3] ; 2 ;
  2491. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[4] ; 2 ;
  2492. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[5] ; 2 ;
  2493. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[6] ; 2 ;
  2494. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[7] ; 2 ;
  2495. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[8] ; 2 ;
  2496. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|q_a[0] ; 2 ;
  2497. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_acc[22] ; 2 ;
  2498. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_acc[30] ; 2 ;
  2499. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_acc[24] ; 2 ;
  2500. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_acc[23] ; 2 ;
  2501. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_acc[25] ; 2 ;
  2502. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_acc[26] ; 2 ;
  2503. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_acc[27] ; 2 ;
  2504. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_acc[28] ; 2 ;
  2505. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_acc[29] ; 2 ;
  2506. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|phase_acc[31] ; 2 ;
  2507. ; altpll:pll_inst|altpll_6o32:auto_generated|pll_lock_sync~feeder ; 1 ;
  2508. ; PLL_CLKIN~input ; 1 ;
  2509. ; PIN_HSI~input ; 1 ;
  2510. ; UART0_UARTRXD~input ; 1 ;
  2511. ; UART1_RX~input ; 1 ;
  2512. ; SPI0_SI_IO0~input ; 1 ;
  2513. ; GPIO4_2~input ; 1 ;
  2514. ; GPIO4_1~input ; 1 ;
  2515. ; gpio8_io_out_en[0] ; 1 ;
  2516. ; gpio8_io_out_data[0] ; 1 ;
  2517. ; gpio0_io_out_en[0] ; 1 ;
  2518. ; gpio0_io_out_data[0] ; 1 ;
  2519. ; gpio4_io_out_en[2] ; 1 ;
  2520. ; gpio4_io_out_data[2] ; 1 ;
  2521. ; gpio4_io_out_en[1] ; 1 ;
  2522. ; gpio4_io_out_data[1] ; 1 ;
  2523. ; sys_ctrl_clkSource[1] ; 1 ;
  2524. ; sys_ctrl_clkSource[0] ; 1 ;
  2525. ; gpio7_io_out_en[6] ; 1 ;
  2526. ; gpio7_io_out_data[6] ; 1 ;
  2527. ; gpio4_io_out_en[5] ; 1 ;
  2528. ; gpio4_io_out_data[5] ; 1 ;
  2529. ; gpio4_io_out_en[6] ; 1 ;
  2530. ; gpio4_io_out_data[6] ; 1 ;
  2531. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le4a[0] ; 1 ;
  2532. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le4a[1] ; 1 ;
  2533. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le5a[0] ; 1 ;
  2534. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le5a[1] ; 1 ;
  2535. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le4a[4] ; 1 ;
  2536. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le4a[5] ; 1 ;
  2537. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le6a[2] ; 1 ;
  2538. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le5a[4] ; 1 ;
  2539. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le6a[3] ; 1 ;
  2540. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le5a[5] ; 1 ;
  2541. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le7a[2] ; 1 ;
  2542. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le6a[4] ; 1 ;
  2543. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le7a[3] ; 1 ;
  2544. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le6a[5] ; 1 ;
  2545. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le7a[4] ; 1 ;
  2546. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le6a[6] ; 1 ;
  2547. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le7a[5] ; 1 ;
  2548. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le7a[6] ; 1 ;
  2549. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le7a[7] ; 1 ;
  2550. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le7a[8] ; 1 ;
  2551. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le6a[10] ; 1 ;
  2552. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le6a[11] ; 1 ;
  2553. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le8a[10] ; 1 ;
  2554. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le4a[2] ; 1 ;
  2555. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le4a[3] ; 1 ;
  2556. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le6a[0] ; 1 ;
  2557. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le5a[2] ; 1 ;
  2558. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le6a[1] ; 1 ;
  2559. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le5a[3] ; 1 ;
  2560. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le7a[0] ; 1 ;
  2561. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le7a[1] ; 1 ;
  2562. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le8a[0] ; 1 ;
  2563. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le8a[1] ; 1 ;
  2564. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le8a[2] ; 1 ;
  2565. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le8a[3] ; 1 ;
  2566. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le8a[4] ; 1 ;
  2567. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le8a[5] ; 1 ;
  2568. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le8a[6] ; 1 ;
  2569. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le4a[6] ; 1 ;
  2570. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le4a[7] ; 1 ;
  2571. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le5a[6] ; 1 ;
  2572. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le4a[8] ; 1 ;
  2573. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le5a[7] ; 1 ;
  2574. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le4a[9] ; 1 ;
  2575. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le5a[8] ; 1 ;
  2576. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le4a[10] ; 1 ;
  2577. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le6a[7] ; 1 ;
  2578. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le5a[9] ; 1 ;
  2579. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le6a[8] ; 1 ;
  2580. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le5a[10] ; 1 ;
  2581. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le6a[9] ; 1 ;
  2582. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le5a[11] ; 1 ;
  2583. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le8a[7] ; 1 ;
  2584. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le7a[9] ; 1 ;
  2585. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le8a[8] ; 1 ;
  2586. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le7a[10] ; 1 ;
  2587. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le8a[9] ; 1 ;
  2588. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult3|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le7a[11] ; 1 ;
  2589. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_threshold[11]~1 ; 1 ;
  2590. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[10]~1 ; 1 ;
  2591. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|duty_cycle[5]~3 ; 1 ;
  2592. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_time_slot[0]~0 ; 1 ;
  2593. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|duty_cycle[4]~2 ; 1 ;
  2594. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[3]~4 ; 1 ;
  2595. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_pulse_width[1]~3 ; 1 ;
  2596. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|duty_cycle[1]~1 ; 1 ;
  2597. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[3]~6 ; 1 ;
  2598. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[5]~5 ; 1 ;
  2599. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[6]~4 ; 1 ;
  2600. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[7]~3 ; 1 ;
  2601. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[8]~2 ; 1 ;
  2602. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|frequency[9]~1 ; 1 ;
  2603. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_clk_div[1]~2 ; 1 ;
  2604. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_clk_div[0]~1 ; 1 ;
  2605. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|min_vol[6]~3 ; 1 ;
  2606. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|min_vol[5]~2 ; 1 ;
  2607. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|min_vol[2]~1 ; 1 ;
  2608. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|max_vol[2]~3 ; 1 ;
  2609. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|max_vol[7]~2 ; 1 ;
  2610. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|max_vol[8]~1 ; 1 ;
  2611. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|max_vol[9]~0 ; 1 ;
  2612. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_chnl_sel[3]~2 ; 1 ;
  2613. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_chnl_sel[2]~1 ; 1 ;
  2614. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|adc_chnl_sel[0]~0 ; 1 ;
  2615. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|min_vol_r[6]~2 ; 1 ;
  2616. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|min_vol_r[5]~1 ; 1 ;
  2617. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|min_vol_r[2]~0 ; 1 ;
  2618. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|max_vol_r[2]~3 ; 1 ;
  2619. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|max_vol_r[7]~2 ; 1 ;
  2620. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|max_vol_r[8]~1 ; 1 ;
  2621. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|max_vol_r[9]~0 ; 1 ;
  2622. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~345 ; 1 ;
  2623. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~344 ; 1 ;
  2624. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~343 ; 1 ;
  2625. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~342 ; 1 ;
  2626. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~341 ; 1 ;
  2627. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|le5a[0] ; 1 ;
  2628. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult2|mult_pbt:auto_generated|alt_mac_mult:mac_mult1|mac_mult_jtg1:auto_generated|mult_bpl:mult1|le5a[10] ; 1 ;
  2629. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_level~4 ; 1 ;
  2630. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_cnt[12]~55 ; 1 ;
  2631. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|single_shot_lock~3 ; 1 ;
  2632. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le5a[10] ; 1 ;
  2633. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|lpm_mult:Mult0|mult_oct:auto_generated|alt_mac_mult:mac_mult1|mac_mult_iug1:auto_generated|mult_aql:mult1|le5a[0] ; 1 ;
  2634. ; analog_ip:macro_inst|apb_dac:apb_dac0_inst|sine_rom~340 ; 1 ;
  2635. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_active~3 ; 1 ;
  2636. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_active~2 ; 1 ;
  2637. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_active~1 ; 1 ;
  2638. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|always4~2 ; 1 ;
  2639. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_level~3 ; 1 ;
  2640. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_level~2 ; 1 ;
  2641. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_active~0 ; 1 ;
  2642. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trig_hit_comb~6 ; 1 ;
  2643. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr8~1 ; 1 ;
  2644. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr8~0 ; 1 ;
  2645. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor~2 ; 1 ;
  2646. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor~1 ; 1 ;
  2647. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr7~1 ; 1 ;
  2648. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr7~0 ; 1 ;
  2649. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor~0 ; 1 ;
  2650. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr6~1 ; 1 ;
  2651. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr6~0 ; 1 ;
  2652. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr5~1 ; 1 ;
  2653. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr5~0 ; 1 ;
  2654. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr4~1 ; 1 ;
  2655. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr4~0 ; 1 ;
  2656. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr3~1 ; 1 ;
  2657. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr3~0 ; 1 ;
  2658. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr2~1 ; 1 ;
  2659. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr2~0 ; 1 ;
  2660. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr1~1 ; 1 ;
  2661. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr1~0 ; 1 ;
  2662. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr0~1 ; 1 ;
  2663. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|WideOr0~0 ; 1 ;
  2664. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Decoder0~2 ; 1 ;
  2665. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Decoder0~1 ; 1 ;
  2666. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Decoder0~0 ; 1 ;
  2667. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|adc_eoc_out ; 1 ;
  2668. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector3~1 ; 1 ;
  2669. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector3~0 ; 1 ;
  2670. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector1~1 ; 1 ;
  2671. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector0~10 ; 1 ;
  2672. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector0~9 ; 1 ;
  2673. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector0~8 ; 1 ;
  2674. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector4~1 ; 1 ;
  2675. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector4~0 ; 1 ;
  2676. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|last_trig_end_addr_edge~0 ; 1 ;
  2677. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev~12 ; 1 ;
  2678. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev~11 ; 1 ;
  2679. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev~10 ; 1 ;
  2680. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev~9 ; 1 ;
  2681. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev~8 ; 1 ;
  2682. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev~7 ; 1 ;
  2683. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev~6 ; 1 ;
  2684. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev~5 ; 1 ;
  2685. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev~4 ; 1 ;
  2686. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev~3 ; 1 ;
  2687. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev~2 ; 1 ;
  2688. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_data_prev~0 ; 1 ;
  2689. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|pulse_trigger~0 ; 1 ;
  2690. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|single_shot_lock~2 ; 1 ;
  2691. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[2]~16 ; 1 ;
  2692. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|gap_cnt_auto[2]~14 ; 1 ;
  2693. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|always5~3 ; 1 ;
  2694. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[7]~34 ; 1 ;
  2695. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|auto_wait_cnt[7]~33 ; 1 ;
  2696. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trig_hit_comb~4 ; 1 ;
  2697. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector2~2 ; 1 ;
  2698. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector0~3 ; 1 ;
  2699. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector0~1 ; 1 ;
  2700. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trig_hit_reg ; 1 ;
  2701. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector2~1 ; 1 ;
  2702. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|always5~1 ; 1 ;
  2703. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|always5~0 ; 1 ;
  2704. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|write_strobe~0 ; 1 ;
  2705. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor[0] ; 1 ;
  2706. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor[1] ; 1 ;
  2707. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor[2] ; 1 ;
  2708. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor[3] ; 1 ;
  2709. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor[4] ; 1 ;
  2710. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor[5] ; 1 ;
  2711. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor[6] ; 1 ;
  2712. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor[7] ; 1 ;
  2713. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor[8] ; 1 ;
  2714. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor[9] ; 1 ;
  2715. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor[10] ; 1 ;
  2716. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor[11] ; 1 ;
  2717. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor[13] ; 1 ;
  2718. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|decim_factor[14] ; 1 ;
  2719. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|always1~2 ; 1 ;
  2720. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|adc_rst_sync1 ; 1 ;
  2721. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr~11 ; 1 ;
  2722. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr~10 ; 1 ;
  2723. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr~9 ; 1 ;
  2724. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr~8 ; 1 ;
  2725. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr~7 ; 1 ;
  2726. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr~6 ; 1 ;
  2727. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr~5 ; 1 ;
  2728. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr~4 ; 1 ;
  2729. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr~3 ; 1 ;
  2730. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trig_done~0 ; 1 ;
  2731. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr[2]~1 ; 1 ;
  2732. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|last_trig_end_addr_edge[9] ; 1 ;
  2733. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|LessThan1~1 ; 1 ;
  2734. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|LessThan1~0 ; 1 ;
  2735. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|edge_trigger~1 ; 1 ;
  2736. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|edge_trigger~0 ; 1 ;
  2737. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|LessThan7~2 ; 1 ;
  2738. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|LessThan7~1 ; 1 ;
  2739. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|LessThan7~0 ; 1 ;
  2740. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trig_hit_comb~2 ; 1 ;
  2741. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trig_hit_comb~1 ; 1 ;
  2742. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trig_hit_comb~0 ; 1 ;
  2743. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr~0 ; 1 ;
  2744. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|Selector0~0 ; 1 ;
  2745. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|always2~0 ; 1 ;
  2746. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|pdone~0 ; 1 ;
  2747. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|hdone~0 ; 1 ;
  2748. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|prdata~8 ; 1 ;
  2749. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|prdata~7 ; 1 ;
  2750. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|prdata~6 ; 1 ;
  2751. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|prdata~5 ; 1 ;
  2752. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|prdata~4 ; 1 ;
  2753. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|prdata~3 ; 1 ;
  2754. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector0~0 ; 1 ;
  2755. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector1~0 ; 1 ;
  2756. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector2~0 ; 1 ;
  2757. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector3~0 ; 1 ;
  2758. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector4~0 ; 1 ;
  2759. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector5~0 ; 1 ;
  2760. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector6~0 ; 1 ;
  2761. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector7~0 ; 1 ;
  2762. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector8~0 ; 1 ;
  2763. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector9~0 ; 1 ;
  2764. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector10~1 ; 1 ;
  2765. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector10~0 ; 1 ;
  2766. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[15] ; 1 ;
  2767. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector11~1 ; 1 ;
  2768. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector11~0 ; 1 ;
  2769. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[14] ; 1 ;
  2770. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector12~1 ; 1 ;
  2771. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector12~0 ; 1 ;
  2772. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[13] ; 1 ;
  2773. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector13~2 ; 1 ;
  2774. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector13~0 ; 1 ;
  2775. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[12] ; 1 ;
  2776. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector14 ; 1 ;
  2777. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector14~0 ; 1 ;
  2778. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[11] ; 1 ;
  2779. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_data_b[11] ; 1 ;
  2780. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector15 ; 1 ;
  2781. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector15~0 ; 1 ;
  2782. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[10] ; 1 ;
  2783. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_data_b[10] ; 1 ;
  2784. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_data_b[9] ; 1 ;
  2785. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|prdata~8 ; 1 ;
  2786. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|trigger_ptr[9] ; 1 ;
  2787. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector16~2 ; 1 ;
  2788. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[9] ; 1 ;
  2789. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector16~1 ; 1 ;
  2790. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector16~0 ; 1 ;
  2791. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_data_b[8] ; 1 ;
  2792. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|prdata~7 ; 1 ;
  2793. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector17~3 ; 1 ;
  2794. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector17~2 ; 1 ;
  2795. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector17~1 ; 1 ;
  2796. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector17~0 ; 1 ;
  2797. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[8] ; 1 ;
  2798. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_data_b[7] ; 1 ;
  2799. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|prdata~6 ; 1 ;
  2800. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector18~4 ; 1 ;
  2801. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector18~3 ; 1 ;
  2802. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[7] ; 1 ;
  2803. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector18~2 ; 1 ;
  2804. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector18~1 ; 1 ;
  2805. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector18~0 ; 1 ;
  2806. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|duty_cycle[7] ; 1 ;
  2807. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_data_b[6] ; 1 ;
  2808. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|prdata~5 ; 1 ;
  2809. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector19~4 ; 1 ;
  2810. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector19~3 ; 1 ;
  2811. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector19~2 ; 1 ;
  2812. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[6] ; 1 ;
  2813. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector19~1 ; 1 ;
  2814. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector19~0 ; 1 ;
  2815. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|duty_cycle[6] ; 1 ;
  2816. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_data_b[5] ; 1 ;
  2817. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|prdata~4 ; 1 ;
  2818. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector20~5 ; 1 ;
  2819. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector20~4 ; 1 ;
  2820. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|duty_cycle[5] ; 1 ;
  2821. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector20~3 ; 1 ;
  2822. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector20~2 ; 1 ;
  2823. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[5] ; 1 ;
  2824. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector20~1 ; 1 ;
  2825. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector20~0 ; 1 ;
  2826. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_data_b[4] ; 1 ;
  2827. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|prdata~3 ; 1 ;
  2828. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector21~5 ; 1 ;
  2829. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector21~4 ; 1 ;
  2830. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector21~3 ; 1 ;
  2831. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[4] ; 1 ;
  2832. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector21~2 ; 1 ;
  2833. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector21~1 ; 1 ;
  2834. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector21~0 ; 1 ;
  2835. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|duty_cycle[4] ; 1 ;
  2836. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_data_b[3] ; 1 ;
  2837. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|prdata~2 ; 1 ;
  2838. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector22~5 ; 1 ;
  2839. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector22~4 ; 1 ;
  2840. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector22~3 ; 1 ;
  2841. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[3] ; 1 ;
  2842. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector22~2 ; 1 ;
  2843. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector22~1 ; 1 ;
  2844. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector22~0 ; 1 ;
  2845. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|duty_cycle[3] ; 1 ;
  2846. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_data_b[2] ; 1 ;
  2847. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|prdata~1 ; 1 ;
  2848. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector23~5 ; 1 ;
  2849. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector23~4 ; 1 ;
  2850. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector23~3 ; 1 ;
  2851. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[2] ; 1 ;
  2852. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector23~2 ; 1 ;
  2853. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector23~1 ; 1 ;
  2854. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector23~0 ; 1 ;
  2855. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|duty_cycle[2] ; 1 ;
  2856. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_data_b[1] ; 1 ;
  2857. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|prdata~0 ; 1 ;
  2858. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector24~9 ; 1 ;
  2859. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector24~8 ; 1 ;
  2860. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector24~7 ; 1 ;
  2861. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[1] ; 1 ;
  2862. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector24~6 ; 1 ;
  2863. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector24~5 ; 1 ;
  2864. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector24~4 ; 1 ;
  2865. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector24~3 ; 1 ;
  2866. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector24~2 ; 1 ;
  2867. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector24~1 ; 1 ;
  2868. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector24~0 ; 1 ;
  2869. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|duty_cycle[1] ; 1 ;
  2870. ; analog_ip:macro_inst|ShiftLeft0~3 ; 1 ;
  2871. ; analog_ip:macro_inst|ShiftLeft0~2 ; 1 ;
  2872. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|ram_wr_data_b[0] ; 1 ;
  2873. ; analog_ip:macro_inst|trig_ctrl:trig_ctrl_inst|Selector5~0 ; 1 ;
  2874. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector25~7 ; 1 ;
  2875. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector25~6 ; 1 ;
  2876. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector25~5 ; 1 ;
  2877. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector25~4 ; 1 ;
  2878. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal10~1 ; 1 ;
  2879. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector25~3 ; 1 ;
  2880. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal1~0 ; 1 ;
  2881. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal2~0 ; 1 ;
  2882. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector25~2 ; 1 ;
  2883. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Equal4~1 ; 1 ;
  2884. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|trig_auto_timeout[0] ; 1 ;
  2885. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector25~1 ; 1 ;
  2886. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|Selector25~0 ; 1 ;
  2887. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|duty_cycle[0] ; 1 ;
  2888. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|Selector25~0 ; 1 ;
  2889. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|psel~0 ; 1 ;
  2890. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|hwrite ; 1 ;
  2891. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[14] ; 1 ;
  2892. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[15] ; 1 ;
  2893. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[13] ; 1 ;
  2894. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[12] ; 1 ;
  2895. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[5] ; 1 ;
  2896. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[4] ; 1 ;
  2897. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[0] ; 1 ;
  2898. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[1] ; 1 ;
  2899. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[6] ; 1 ;
  2900. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[7] ; 1 ;
  2901. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[8] ; 1 ;
  2902. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[9] ; 1 ;
  2903. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[10] ; 1 ;
  2904. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[11] ; 1 ;
  2905. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[2] ; 1 ;
  2906. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|haddr[3] ; 1 ;
  2907. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|sclk~0 ; 1 ;
  2908. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|Equal0~3 ; 1 ;
  2909. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|Equal0~2 ; 1 ;
  2910. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|Equal0~1 ; 1 ;
  2911. ; analog_ip:macro_inst|apb_adc:apb_adc0_inst|Equal0~0 ; 1 ;
  2912. ; altpll:pll_inst|altpll_6o32:auto_generated|pll_lock_sync ; 1 ;
  2913. ; analog_ip:macro_inst|ahb2apb:ahb2apb_inst|hreadyout~0 ; 1 ;
  2914. ; analog_ip:macro_inst|apb_prdata[31]~22 ; 1 ;
  2915. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|prdata[31] ; 1 ;
  2916. ; analog_ip:macro_inst|apb_prdata[30]~21 ; 1 ;
  2917. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|prdata[30] ; 1 ;
  2918. ; analog_ip:macro_inst|apb_prdata[29]~20 ; 1 ;
  2919. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|prdata[29] ; 1 ;
  2920. ; analog_ip:macro_inst|apb_prdata[28]~19 ; 1 ;
  2921. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|prdata[28] ; 1 ;
  2922. ; analog_ip:macro_inst|apb_prdata[27]~18 ; 1 ;
  2923. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|prdata[27] ; 1 ;
  2924. ; analog_ip:macro_inst|apb_prdata[26]~17 ; 1 ;
  2925. ; analog_ip:macro_inst|cfg_reg:cfg_reg_inst|prdata[26] ; 1 ;
  2926. +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------+
  2927. +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  2928. ; Fitter RAM Summary ;
  2929. +-------------------------------------------------------------------------------------------+------+----------------+--------------+--------------+--------------+--------------+--------------+------------------------+-------------------------+------------------------+-------------------------+-------+-----------------------------+-----------------------------+-----------------------------+-----------------------------+---------------------+------+------+------------------------------+----------------------+-----------------+-----------------+
  2930. ; Name ; Type ; Mode ; Clock Mode ; Port A Depth ; Port A Width ; Port B Depth ; Port B Width ; Port A Input Registers ; Port A Output Registers ; Port B Input Registers ; Port B Output Registers ; Size ; Implementation Port A Depth ; Implementation Port A Width ; Implementation Port B Depth ; Implementation Port B Width ; Implementation Bits ; M9Ks ; MIF ; Location ; Mixed Width RDW Mode ; Port A RDW Mode ; Port B RDW Mode ;
  2931. +-------------------------------------------------------------------------------------------+------+----------------+--------------+--------------+--------------+--------------+--------------+------------------------+-------------------------+------------------------+-------------------------+-------+-----------------------------+-----------------------------+-----------------------------+-----------------------------+---------------------+------+------+------------------------------+----------------------+-----------------+-----------------+
  2932. ; analog_ip:macro_inst|altsyncram:u_dual_port_ram|altsyncram_sgu1:auto_generated|ALTSYNCRAM ; M9K ; True Dual Port ; Single Clock ; 1024 ; 16 ; 1024 ; 16 ; yes ; no ; yes ; no ; 16384 ; 1024 ; 16 ; 1024 ; 16 ; 16384 ; 2 ; None ; M9K_X55_Y4_N0, M9K_X55_Y3_N0 ; Don't care ; Old data ; Old data ;
  2933. +-------------------------------------------------------------------------------------------+------+----------------+--------------+--------------+--------------+--------------+--------------+------------------------+-------------------------+------------------------+-------------------------+-------+-----------------------------+-----------------------------+-----------------------------+-----------------------------+---------------------+------+------+------------------------------+----------------------+-----------------+-----------------+
  2934. Note: Fitter may spread logical memories into multiple blocks to improve timing. The actual required RAM blocks can be found in the Fitter Resource Usage section.
  2935. +---------------------------------------------------------+
  2936. ; Other Routing Usage Summary ;
  2937. +-----------------------------+---------------------------+
  2938. ; Other Routing Resource Type ; Usage ;
  2939. +-----------------------------+---------------------------+
  2940. ; Block interconnects ; 2,048 / 238,469 ( < 1 % ) ;
  2941. ; C16 interconnects ; 10 / 7,238 ( < 1 % ) ;
  2942. ; C4 interconnects ; 954 / 146,424 ( < 1 % ) ;
  2943. ; Direct links ; 412 / 238,469 ( < 1 % ) ;
  2944. ; Global clocks ; 3 / 20 ( 15 % ) ;
  2945. ; Local interconnects ; 779 / 81,264 ( < 1 % ) ;
  2946. ; R24 interconnects ; 15 / 7,153 ( < 1 % ) ;
  2947. ; R4 interconnects ; 939 / 201,722 ( < 1 % ) ;
  2948. +-----------------------------+---------------------------+
  2949. +-----------------------------------------------------------------------------+
  2950. ; LAB Logic Elements ;
  2951. +---------------------------------------------+-------------------------------+
  2952. ; Number of Logic Elements (Average = 13.92) ; Number of LABs (Total = 117) ;
  2953. +---------------------------------------------+-------------------------------+
  2954. ; 1 ; 3 ;
  2955. ; 2 ; 4 ;
  2956. ; 3 ; 1 ;
  2957. ; 4 ; 0 ;
  2958. ; 5 ; 0 ;
  2959. ; 6 ; 1 ;
  2960. ; 7 ; 0 ;
  2961. ; 8 ; 3 ;
  2962. ; 9 ; 2 ;
  2963. ; 10 ; 1 ;
  2964. ; 11 ; 3 ;
  2965. ; 12 ; 3 ;
  2966. ; 13 ; 8 ;
  2967. ; 14 ; 7 ;
  2968. ; 15 ; 10 ;
  2969. ; 16 ; 71 ;
  2970. +---------------------------------------------+-------------------------------+
  2971. +--------------------------------------------------------------------+
  2972. ; LAB-wide Signals ;
  2973. +------------------------------------+-------------------------------+
  2974. ; LAB-wide Signals (Average = 1.29) ; Number of LABs (Total = 117) ;
  2975. +------------------------------------+-------------------------------+
  2976. ; 1 Async. clear ; 51 ;
  2977. ; 1 Clock ; 54 ;
  2978. ; 1 Clock enable ; 19 ;
  2979. ; 1 Sync. clear ; 9 ;
  2980. ; 1 Sync. load ; 1 ;
  2981. ; 2 Clock enables ; 17 ;
  2982. +------------------------------------+-------------------------------+
  2983. +------------------------------------------------------------------------------+
  2984. ; LAB Signals Sourced ;
  2985. +----------------------------------------------+-------------------------------+
  2986. ; Number of Signals Sourced (Average = 16.69) ; Number of LABs (Total = 117) ;
  2987. +----------------------------------------------+-------------------------------+
  2988. ; 0 ; 2 ;
  2989. ; 1 ; 3 ;
  2990. ; 2 ; 6 ;
  2991. ; 3 ; 1 ;
  2992. ; 4 ; 2 ;
  2993. ; 5 ; 2 ;
  2994. ; 6 ; 0 ;
  2995. ; 7 ; 1 ;
  2996. ; 8 ; 1 ;
  2997. ; 9 ; 2 ;
  2998. ; 10 ; 0 ;
  2999. ; 11 ; 2 ;
  3000. ; 12 ; 3 ;
  3001. ; 13 ; 6 ;
  3002. ; 14 ; 2 ;
  3003. ; 15 ; 5 ;
  3004. ; 16 ; 33 ;
  3005. ; 17 ; 4 ;
  3006. ; 18 ; 5 ;
  3007. ; 19 ; 1 ;
  3008. ; 20 ; 2 ;
  3009. ; 21 ; 6 ;
  3010. ; 22 ; 3 ;
  3011. ; 23 ; 2 ;
  3012. ; 24 ; 2 ;
  3013. ; 25 ; 2 ;
  3014. ; 26 ; 2 ;
  3015. ; 27 ; 2 ;
  3016. ; 28 ; 1 ;
  3017. ; 29 ; 4 ;
  3018. ; 30 ; 3 ;
  3019. ; 31 ; 0 ;
  3020. ; 32 ; 7 ;
  3021. +----------------------------------------------+-------------------------------+
  3022. +---------------------------------------------------------------------------------+
  3023. ; LAB Signals Sourced Out ;
  3024. +-------------------------------------------------+-------------------------------+
  3025. ; Number of Signals Sourced Out (Average = 8.60) ; Number of LABs (Total = 117) ;
  3026. +-------------------------------------------------+-------------------------------+
  3027. ; 0 ; 3 ;
  3028. ; 1 ; 10 ;
  3029. ; 2 ; 9 ;
  3030. ; 3 ; 8 ;
  3031. ; 4 ; 5 ;
  3032. ; 5 ; 8 ;
  3033. ; 6 ; 2 ;
  3034. ; 7 ; 6 ;
  3035. ; 8 ; 8 ;
  3036. ; 9 ; 5 ;
  3037. ; 10 ; 8 ;
  3038. ; 11 ; 4 ;
  3039. ; 12 ; 6 ;
  3040. ; 13 ; 8 ;
  3041. ; 14 ; 9 ;
  3042. ; 15 ; 1 ;
  3043. ; 16 ; 12 ;
  3044. ; 17 ; 2 ;
  3045. ; 18 ; 0 ;
  3046. ; 19 ; 0 ;
  3047. ; 20 ; 1 ;
  3048. ; 21 ; 1 ;
  3049. ; 22 ; 0 ;
  3050. ; 23 ; 1 ;
  3051. +-------------------------------------------------+-------------------------------+
  3052. +------------------------------------------------------------------------------+
  3053. ; LAB Distinct Inputs ;
  3054. +----------------------------------------------+-------------------------------+
  3055. ; Number of Distinct Inputs (Average = 16.71) ; Number of LABs (Total = 117) ;
  3056. +----------------------------------------------+-------------------------------+
  3057. ; 0 ; 0 ;
  3058. ; 1 ; 5 ;
  3059. ; 2 ; 2 ;
  3060. ; 3 ; 2 ;
  3061. ; 4 ; 3 ;
  3062. ; 5 ; 2 ;
  3063. ; 6 ; 4 ;
  3064. ; 7 ; 3 ;
  3065. ; 8 ; 4 ;
  3066. ; 9 ; 5 ;
  3067. ; 10 ; 4 ;
  3068. ; 11 ; 4 ;
  3069. ; 12 ; 5 ;
  3070. ; 13 ; 3 ;
  3071. ; 14 ; 5 ;
  3072. ; 15 ; 1 ;
  3073. ; 16 ; 5 ;
  3074. ; 17 ; 0 ;
  3075. ; 18 ; 5 ;
  3076. ; 19 ; 5 ;
  3077. ; 20 ; 7 ;
  3078. ; 21 ; 4 ;
  3079. ; 22 ; 6 ;
  3080. ; 23 ; 4 ;
  3081. ; 24 ; 2 ;
  3082. ; 25 ; 4 ;
  3083. ; 26 ; 1 ;
  3084. ; 27 ; 0 ;
  3085. ; 28 ; 3 ;
  3086. ; 29 ; 4 ;
  3087. ; 30 ; 5 ;
  3088. ; 31 ; 1 ;
  3089. ; 32 ; 5 ;
  3090. ; 33 ; 2 ;
  3091. ; 34 ; 1 ;
  3092. +----------------------------------------------+-------------------------------+
  3093. +------------------------------------------+
  3094. ; I/O Rules Summary ;
  3095. +----------------------------------+-------+
  3096. ; I/O Rules Statistic ; Total ;
  3097. +----------------------------------+-------+
  3098. ; Total I/O Rules ; 30 ;
  3099. ; Number of I/O Rules Passed ; 7 ;
  3100. ; Number of I/O Rules Failed ; 0 ;
  3101. ; Number of I/O Rules Unchecked ; 0 ;
  3102. ; Number of I/O Rules Inapplicable ; 23 ;
  3103. +----------------------------------+-------+
  3104. +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  3105. ; I/O Rules Details ;
  3106. +--------------+-----------+-----------------------------------+------------------------------------------------------------------------------------------------------+----------+--------------------------------------------------------------------------+------+-------------------+
  3107. ; Status ; ID ; Category ; Rule Description ; Severity ; Information ; Area ; Extra Information ;
  3108. +--------------+-----------+-----------------------------------+------------------------------------------------------------------------------------------------------+----------+--------------------------------------------------------------------------+------+-------------------+
  3109. ; Inapplicable ; IO_000001 ; Capacity Checks ; Number of pins in an I/O bank should not exceed the number of locations available. ; Critical ; No Location assignments found. ; I/O ; ;
  3110. ; Inapplicable ; IO_000002 ; Capacity Checks ; Number of clocks in an I/O bank should not exceed the number of clocks available. ; Critical ; No Global Signal assignments found. ; I/O ; ;
  3111. ; Inapplicable ; IO_000003 ; Capacity Checks ; Number of pins in a Vrefgroup should not exceed the number of locations available. ; Critical ; No Location assignments found. ; I/O ; ;
  3112. ; Inapplicable ; IO_000004 ; Voltage Compatibility Checks ; The I/O bank should support the requested VCCIO. ; Critical ; No IOBANK_VCCIO assignments found. ; I/O ; ;
  3113. ; Inapplicable ; IO_000005 ; Voltage Compatibility Checks ; The I/O bank should not have competing VREF values. ; Critical ; No VREF I/O Standard assignments found. ; I/O ; ;
  3114. ; Pass ; IO_000006 ; Voltage Compatibility Checks ; The I/O bank should not have competing VCCIO values. ; Critical ; 0 such failures found. ; I/O ; ;
  3115. ; Inapplicable ; IO_000007 ; Valid Location Checks ; Checks for unavailable locations. ; Critical ; No Location assignments found. ; I/O ; ;
  3116. ; Pass ; IO_000008 ; Valid Location Checks ; Checks for reserved locations. ; Critical ; 0 such failures found. ; I/O ; ;
  3117. ; Pass ; IO_000009 ; I/O Properties Checks for One I/O ; The location should support the requested I/O standard. ; Critical ; 0 such failures found. ; I/O ; ;
  3118. ; Pass ; IO_000010 ; I/O Properties Checks for One I/O ; The location should support the requested I/O direction. ; Critical ; 0 such failures found. ; I/O ; ;
  3119. ; Inapplicable ; IO_000011 ; I/O Properties Checks for One I/O ; The location should support the requested Current Strength. ; Critical ; No Current Strength assignments found. ; I/O ; ;
  3120. ; Inapplicable ; IO_000012 ; I/O Properties Checks for One I/O ; The location should support the requested On Chip Termination value. ; Critical ; No Termination assignments found. ; I/O ; ;
  3121. ; Inapplicable ; IO_000013 ; I/O Properties Checks for One I/O ; The location should support the requested Bus Hold value. ; Critical ; No Enable Bus-Hold Circuitry assignments found. ; I/O ; ;
  3122. ; Inapplicable ; IO_000014 ; I/O Properties Checks for One I/O ; The location should support the requested Weak Pull Up value. ; Critical ; No Weak Pull-Up Resistor assignments found. ; I/O ; ;
  3123. ; Pass ; IO_000015 ; I/O Properties Checks for One I/O ; The location should support the requested PCI Clamp Diode. ; Critical ; 0 such failures found. ; I/O ; ;
  3124. ; Inapplicable ; IO_000018 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested Current Strength. ; Critical ; No Current Strength assignments found. ; I/O ; ;
  3125. ; Inapplicable ; IO_000019 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested On Chip Termination value. ; Critical ; No Termination assignments found. ; I/O ; ;
  3126. ; Pass ; IO_000020 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested PCI Clamp Diode. ; Critical ; 0 such failures found. ; I/O ; ;
  3127. ; Inapplicable ; IO_000021 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested Weak Pull Up value. ; Critical ; No Weak Pull-Up Resistor assignments found. ; I/O ; ;
  3128. ; Inapplicable ; IO_000022 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested Bus Hold value. ; Critical ; No Enable Bus-Hold Circuitry assignments found. ; I/O ; ;
  3129. ; Inapplicable ; IO_000023 ; I/O Properties Checks for One I/O ; The I/O standard should support the Open Drain value. ; Critical ; No open drain assignments found. ; I/O ; ;
  3130. ; Inapplicable ; IO_000024 ; I/O Properties Checks for One I/O ; The I/O direction should support the On Chip Termination value. ; Critical ; No Termination assignments found. ; I/O ; ;
  3131. ; Inapplicable ; IO_000026 ; I/O Properties Checks for One I/O ; On Chip Termination and Current Strength should not be used at the same time. ; Critical ; No Current Strength or Termination assignments found. ; I/O ; ;
  3132. ; Inapplicable ; IO_000027 ; I/O Properties Checks for One I/O ; Weak Pull Up and Bus Hold should not be used at the same time. ; Critical ; No Enable Bus-Hold Circuitry or Weak Pull-Up Resistor assignments found. ; I/O ; ;
  3133. ; Inapplicable ; IO_000045 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested Slew Rate value. ; Critical ; No Slew Rate assignments found. ; I/O ; ;
  3134. ; Inapplicable ; IO_000046 ; I/O Properties Checks for One I/O ; The location should support the requested Slew Rate value. ; Critical ; No Slew Rate assignments found. ; I/O ; ;
  3135. ; Inapplicable ; IO_000047 ; I/O Properties Checks for One I/O ; On Chip Termination and Slew Rate should not be used at the same time. ; Critical ; No Slew Rate assignments found. ; I/O ; ;
  3136. ; Pass ; IO_000033 ; Electromigration Checks ; Current density for consecutive I/Os should not exceed 240mA for row I/Os and 240mA for column I/Os. ; Critical ; 0 such failures found. ; I/O ; ;
  3137. ; Inapplicable ; IO_000034 ; SI Related Distance Checks ; Single-ended outputs should be 5 LAB row(s) away from a differential I/O. ; High ; No Differential I/O Standard assignments found. ; I/O ; ;
  3138. ; Inapplicable ; IO_000042 ; SI Related SSO Limit Checks ; No more than 20 outputs are allowed in a VREF group when VREF is being read from. ; High ; No VREF I/O Standard assignments found. ; I/O ; ;
  3139. +--------------+-----------+-----------------------------------+------------------------------------------------------------------------------------------------------+----------+--------------------------------------------------------------------------+------+-------------------+
  3140. +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  3141. ; I/O Rules Matrix ;
  3142. +--------------------+--------------+--------------+--------------+--------------+--------------+-----------+--------------+-----------+-----------+-----------+--------------+--------------+--------------+--------------+-----------+--------------+--------------+-----------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+-----------+--------------+--------------+
  3143. ; Pin/Rules ; IO_000001 ; IO_000002 ; IO_000003 ; IO_000004 ; IO_000005 ; IO_000006 ; IO_000007 ; IO_000008 ; IO_000009 ; IO_000010 ; IO_000011 ; IO_000012 ; IO_000013 ; IO_000014 ; IO_000015 ; IO_000018 ; IO_000019 ; IO_000020 ; IO_000021 ; IO_000022 ; IO_000023 ; IO_000024 ; IO_000026 ; IO_000027 ; IO_000045 ; IO_000046 ; IO_000047 ; IO_000033 ; IO_000034 ; IO_000042 ;
  3144. +--------------------+--------------+--------------+--------------+--------------+--------------+-----------+--------------+-----------+-----------+-----------+--------------+--------------+--------------+--------------+-----------+--------------+--------------+-----------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+-----------+--------------+--------------+
  3145. ; Total Pass ; 0 ; 0 ; 0 ; 0 ; 0 ; 15 ; 0 ; 15 ; 15 ; 15 ; 0 ; 0 ; 0 ; 0 ; 15 ; 0 ; 0 ; 15 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 15 ; 0 ; 0 ;
  3146. ; Total Unchecked ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ;
  3147. ; Total Inapplicable ; 15 ; 15 ; 15 ; 15 ; 15 ; 0 ; 15 ; 0 ; 0 ; 0 ; 15 ; 15 ; 15 ; 15 ; 0 ; 15 ; 15 ; 0 ; 15 ; 15 ; 15 ; 15 ; 15 ; 15 ; 15 ; 15 ; 15 ; 0 ; 15 ; 15 ;
  3148. ; Total Fail ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ;
  3149. ; PIN_HSE ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Pass ; Pass ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ;
  3150. ; SPI0_CSN ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Pass ; Pass ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ;
  3151. ; SPI0_SCK ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Pass ; Pass ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ;
  3152. ; UART0_UARTTXD ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Pass ; Pass ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ;
  3153. ; BAUD_RATE ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Pass ; Pass ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ;
  3154. ; GPIO4_1 ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Pass ; Pass ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ;
  3155. ; GPIO4_2 ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Pass ; Pass ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ;
  3156. ; SPI0_SI_IO0 ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Pass ; Pass ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ;
  3157. ; TEST_SINGLE ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Pass ; Pass ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ;
  3158. ; UART1_RX ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Pass ; Pass ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ;
  3159. ; UART1_TX ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Pass ; Pass ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ;
  3160. ; so_io1 ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Pass ; Pass ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ;
  3161. ; UART0_UARTRXD ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Pass ; Pass ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ;
  3162. ; PIN_HSI ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Pass ; Pass ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ;
  3163. ; PLL_CLKIN ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Pass ; Pass ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass ; Inapplicable ; Inapplicable ;
  3164. +--------------------+--------------+--------------+--------------+--------------+--------------+-----------+--------------+-----------+-----------+-----------+--------------+--------------+--------------+--------------+-----------+--------------+--------------+-----------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+-----------+--------------+--------------+
  3165. +---------------------------------------------------------------------------------------------+
  3166. ; Fitter Device Options ;
  3167. +------------------------------------------------------------------+--------------------------+
  3168. ; Option ; Setting ;
  3169. +------------------------------------------------------------------+--------------------------+
  3170. ; Enable user-supplied start-up clock (CLKUSR) ; Off ;
  3171. ; Enable device-wide reset (DEV_CLRn) ; Off ;
  3172. ; Enable device-wide output enable (DEV_OE) ; Off ;
  3173. ; Enable INIT_DONE output ; Off ;
  3174. ; Configuration scheme ; Active Serial ;
  3175. ; Error detection CRC ; Off ;
  3176. ; Enable open drain on CRC_ERROR pin ; Off ;
  3177. ; Enable input tri-state on active configuration pins in user mode ; Off ;
  3178. ; Configuration Voltage Level ; Auto ;
  3179. ; Force Configuration Voltage Level ; Off ;
  3180. ; nCEO ; As output driving ground ;
  3181. ; Data[0] ; As input tri-stated ;
  3182. ; Data[1]/ASDO ; As input tri-stated ;
  3183. ; Data[7..2] ; Unreserved ;
  3184. ; FLASH_nCE/nCSO ; As input tri-stated ;
  3185. ; Other Active Parallel pins ; Unreserved ;
  3186. ; DCLK ; As output driving ground ;
  3187. ; Base pin-out file on sameframe device ; Off ;
  3188. +------------------------------------------------------------------+--------------------------+
  3189. +------------------------------------+
  3190. ; Operating Settings and Conditions ;
  3191. +---------------------------+--------+
  3192. ; Setting ; Value ;
  3193. +---------------------------+--------+
  3194. ; Nominal Core Voltage ; 1.20 V ;
  3195. ; Low Junction Temperature ; 0 °C ;
  3196. ; High Junction Temperature ; 85 °C ;
  3197. +---------------------------+--------+
  3198. +-----------------+
  3199. ; Fitter Messages ;
  3200. +-----------------+
  3201. Info (11104): Parallel Compilation has detected 8 hyper-threaded processors. However, the extra hyper-threaded processors will not be used by default. Parallel Compilation will use 4 of the 4 physical processors detected instead.
  3202. Info (119006): Selected device EP4CE75F29C8 for design "example_board"
  3203. Info (21077): Low junction temperature is 0 degrees C
  3204. Info (21077): High junction temperature is 85 degrees C
  3205. Info (15535): Implemented PLL "altpll:pll_inst|altpll_6o32:auto_generated|pll1" as Cyclone IV E PLL type
  3206. Info (15099): Implementing clock multiplication of 13, clock division of 1, and phase shift of 0 degrees (0 ps) for altpll:pll_inst|altpll_6o32:auto_generated|clk[0] port
  3207. Info (171004): Fitter is performing a Standard Fit compilation using maximum Fitter effort to optimize design performance
  3208. Warning (171002): Current optimization assignments may cause the Fitter to introduce hold timing violations on connections clocked by global signals
  3209. Info (176444): Device migration not selected. If you intend to use device migration later, you may need to change the pin assignments as they may be incompatible with other devices
  3210. Info (176445): Device EP4CE40F29C8 is compatible
  3211. Info (176445): Device EP4CE30F29C8 is compatible
  3212. Info (176445): Device EP4CE55F29C8 is compatible
  3213. Info (176445): Device EP4CE115F29C8 is compatible
  3214. Info (169124): Fitter converted 5 user pins into dedicated programming pins
  3215. Info (169125): Pin ~ALTERA_ASDO_DATA1~ is reserved at location F4
  3216. Info (169125): Pin ~ALTERA_FLASH_nCE_nCSO~ is reserved at location E2
  3217. Info (169125): Pin ~ALTERA_DCLK~ is reserved at location P3
  3218. Info (169125): Pin ~ALTERA_DATA0~ is reserved at location N7
  3219. Info (169125): Pin ~ALTERA_nCEO~ is reserved at location P28
  3220. Warning (15714): Some pins have incomplete I/O assignments. Refer to the I/O Assignment Warnings report for details
  3221. Info (176045): Design uses memory blocks. Violating setup or hold times of memory block address registers for either read or write operations could cause memory contents to be corrupted. Make sure that all memory block address registers meet the setup and hold time requirements.
  3222. Critical Warning (169085): No exact pin location assignment(s) for 15 pins of 15 total pins
  3223. Info (169086): Pin PIN_HSE not assigned to an exact location on the device
  3224. Info (169086): Pin SPI0_CSN not assigned to an exact location on the device
  3225. Info (169086): Pin SPI0_SCK not assigned to an exact location on the device
  3226. Info (169086): Pin UART0_UARTTXD not assigned to an exact location on the device
  3227. Info (169086): Pin BAUD_RATE not assigned to an exact location on the device
  3228. Info (169086): Pin GPIO4_1 not assigned to an exact location on the device
  3229. Info (169086): Pin GPIO4_2 not assigned to an exact location on the device
  3230. Info (169086): Pin SPI0_SI_IO0 not assigned to an exact location on the device
  3231. Info (169086): Pin TEST_SINGLE not assigned to an exact location on the device
  3232. Info (169086): Pin UART1_RX not assigned to an exact location on the device
  3233. Info (169086): Pin UART1_TX not assigned to an exact location on the device
  3234. Info (169086): Pin so_io1 not assigned to an exact location on the device
  3235. Info (169086): Pin UART0_UARTRXD not assigned to an exact location on the device
  3236. Info (169086): Pin PIN_HSI not assigned to an exact location on the device
  3237. Info (169086): Pin PLL_CLKIN not assigned to an exact location on the device
  3238. Info (332104): Reading SDC File: 'example_board.sdc'
  3239. Info (332110): Deriving PLL clocks
  3240. Info (332110): create_clock -period 125.000 -waveform {0.000 62.500} -name PLL_CLKIN PLL_CLKIN
  3241. Info (332110): create_generated_clock -source {pll_inst|auto_generated|pll1|inclk[0]} -multiply_by 13 -duty_cycle 50.00 -name {pll_inst|auto_generated|pll1|clk[0]} {pll_inst|auto_generated|pll1|clk[0]}
  3242. Warning (332174): Ignored filter at example_board.sdc(13): rv32|resetn_out could not be matched with a clock or keeper or register or port or pin or cell or partition
  3243. Warning (332049): Ignored set_false_path at example_board.sdc(13): Argument <from> is not an object ID
  3244. Info (332050): set_false_path -from rv32|resetn_out
  3245. Critical Warning (332168): The following clock transfers have no clock uncertainty assignment. For more accurate results, apply clock uncertainty assignments or use the derive_clock_uncertainty command.
  3246. Critical Warning (332169): From PIN_HSI (Rise) to PIN_HSI (Rise) (setup and hold)
  3247. Critical Warning (332169): From pll_inst|auto_generated|pll1|clk[0] (Rise) to pll_inst|auto_generated|pll1|clk[0] (Rise) (setup and hold)
  3248. Info (332129): Detected timing requirements -- optimizing circuit to achieve only the specified requirements
  3249. Info (332111): Found 4 clocks
  3250. Info (332111): Period Clock Name
  3251. Info (332111): ======== ============
  3252. Info (332111): 125.000 PIN_HSE
  3253. Info (332111): 100.000 PIN_HSI
  3254. Info (332111): 125.000 PLL_CLKIN
  3255. Info (332111): 9.615 pll_inst|auto_generated|pll1|clk[0]
  3256. Info (176352): Promoted node altpll:pll_inst|altpll_6o32:auto_generated|clk[0] (placed in counter C0 of PLL_1)
  3257. Info (176355): Automatically promoted alta_gclksw:gclksw_inst|gclk_switch to use location or clock signal Global Clock CLKCTRL_G3
  3258. Info (176352): Promoted node PIN_HSI~input (placed in PIN Y2 (CLK2, DIFFCLK_1p))
  3259. Info (176355): Automatically promoted alta_gclksw:gclksw_inst|gclk_switch to use location or clock signal Global Clock CLKCTRL_G3
  3260. Info (176352): Promoted node sys_resetn
  3261. Info (176354): Promoted destinations to use location or clock signal Global Clock
  3262. Info (176353): Automatically promoted node PLL_ENABLE
  3263. Info (176355): Automatically promoted destinations to use location or clock signal Global Clock
  3264. Info (176233): Starting register packing
  3265. Info (176235): Finished register packing
  3266. Extra Info (176219): No registers were packed into other blocks
  3267. Info (176214): Statistics of I/O pins that need to be placed that use the same VCCIO and VREF, before I/O pin placement
  3268. Info (176211): Number of I/O pins in group: 13 (unused VREF, 3.3V VCCIO, 2 input, 3 output, 8 bidirectional)
  3269. Info (176212): I/O standards used: 3.3-V LVTTL.
  3270. Info (176215): I/O bank details before I/O pin placement
  3271. Info (176214): Statistics of I/O banks
  3272. Info (176213): I/O bank number 1 does not use VREF pins and has undetermined VCCIO pins. 5 total pin(s) used -- 40 pins available
  3273. Info (176213): I/O bank number 2 does not use VREF pins and has undetermined VCCIO pins. 1 total pin(s) used -- 48 pins available
  3274. Info (176213): I/O bank number 3 does not use VREF pins and has undetermined VCCIO pins. 0 total pin(s) used -- 59 pins available
  3275. Info (176213): I/O bank number 4 does not use VREF pins and has undetermined VCCIO pins. 0 total pin(s) used -- 58 pins available
  3276. Info (176213): I/O bank number 5 does not use VREF pins and has undetermined VCCIO pins. 0 total pin(s) used -- 52 pins available
  3277. Info (176213): I/O bank number 6 does not use VREF pins and has undetermined VCCIO pins. 1 total pin(s) used -- 47 pins available
  3278. Info (176213): I/O bank number 7 does not use VREF pins and has undetermined VCCIO pins. 0 total pin(s) used -- 59 pins available
  3279. Info (176213): I/O bank number 8 does not use VREF pins and has undetermined VCCIO pins. 0 total pin(s) used -- 57 pins available
  3280. Info (128000): Starting physical synthesis optimizations for speed
  3281. Info (128001): Physical synthesis optimizations for speed complete: elapsed time is 00:00:01
  3282. Warning (15705): Ignored locations or region assignments to the following nodes
  3283. Warning (15706): Node "dmactive" is assigned to location or region, but does not exist in design
  3284. Warning (15706): Node "ext_dma_DMACBREQ[0]" is assigned to location or region, but does not exist in design
  3285. Warning (15706): Node "ext_dma_DMACBREQ[1]" is assigned to location or region, but does not exist in design
  3286. Warning (15706): Node "ext_dma_DMACBREQ[2]" is assigned to location or region, but does not exist in design
  3287. Warning (15706): Node "ext_dma_DMACBREQ[3]" is assigned to location or region, but does not exist in design
  3288. Warning (15706): Node "ext_dma_DMACCLR[0]" is assigned to location or region, but does not exist in design
  3289. Warning (15706): Node "ext_dma_DMACCLR[1]" is assigned to location or region, but does not exist in design
  3290. Warning (15706): Node "ext_dma_DMACCLR[2]" is assigned to location or region, but does not exist in design
  3291. Warning (15706): Node "ext_dma_DMACCLR[3]" is assigned to location or region, but does not exist in design
  3292. Warning (15706): Node "ext_dma_DMACLBREQ[0]" is assigned to location or region, but does not exist in design
  3293. Warning (15706): Node "ext_dma_DMACLBREQ[1]" is assigned to location or region, but does not exist in design
  3294. Warning (15706): Node "ext_dma_DMACLBREQ[2]" is assigned to location or region, but does not exist in design
  3295. Warning (15706): Node "ext_dma_DMACLBREQ[3]" is assigned to location or region, but does not exist in design
  3296. Warning (15706): Node "ext_dma_DMACLSREQ[0]" is assigned to location or region, but does not exist in design
  3297. Warning (15706): Node "ext_dma_DMACLSREQ[1]" is assigned to location or region, but does not exist in design
  3298. Warning (15706): Node "ext_dma_DMACLSREQ[2]" is assigned to location or region, but does not exist in design
  3299. Warning (15706): Node "ext_dma_DMACLSREQ[3]" is assigned to location or region, but does not exist in design
  3300. Warning (15706): Node "ext_dma_DMACSREQ[0]" is assigned to location or region, but does not exist in design
  3301. Warning (15706): Node "ext_dma_DMACSREQ[1]" is assigned to location or region, but does not exist in design
  3302. Warning (15706): Node "ext_dma_DMACSREQ[2]" is assigned to location or region, but does not exist in design
  3303. Warning (15706): Node "ext_dma_DMACSREQ[3]" is assigned to location or region, but does not exist in design
  3304. Warning (15706): Node "ext_dma_DMACTC[0]" is assigned to location or region, but does not exist in design
  3305. Warning (15706): Node "ext_dma_DMACTC[1]" is assigned to location or region, but does not exist in design
  3306. Warning (15706): Node "ext_dma_DMACTC[2]" is assigned to location or region, but does not exist in design
  3307. Warning (15706): Node "ext_dma_DMACTC[3]" is assigned to location or region, but does not exist in design
  3308. Warning (15706): Node "ext_int[0]" is assigned to location or region, but does not exist in design
  3309. Warning (15706): Node "ext_int[1]" is assigned to location or region, but does not exist in design
  3310. Warning (15706): Node "ext_int[2]" is assigned to location or region, but does not exist in design
  3311. Warning (15706): Node "ext_int[3]" is assigned to location or region, but does not exist in design
  3312. Warning (15706): Node "ext_int[4]" is assigned to location or region, but does not exist in design
  3313. Warning (15706): Node "ext_int[5]" is assigned to location or region, but does not exist in design
  3314. Warning (15706): Node "ext_int[6]" is assigned to location or region, but does not exist in design
  3315. Warning (15706): Node "ext_int[7]" is assigned to location or region, but does not exist in design
  3316. Warning (15706): Node "ext_resetn" is assigned to location or region, but does not exist in design
  3317. Warning (15706): Node "gpio0_io_out_data[1]" is assigned to location or region, but does not exist in design
  3318. Warning (15706): Node "gpio0_io_out_data[2]" is assigned to location or region, but does not exist in design
  3319. Warning (15706): Node "gpio0_io_out_data[3]" is assigned to location or region, but does not exist in design
  3320. Warning (15706): Node "gpio0_io_out_data[4]" is assigned to location or region, but does not exist in design
  3321. Warning (15706): Node "gpio0_io_out_data[5]" is assigned to location or region, but does not exist in design
  3322. Warning (15706): Node "gpio0_io_out_data[6]" is assigned to location or region, but does not exist in design
  3323. Warning (15706): Node "gpio0_io_out_data[7]" is assigned to location or region, but does not exist in design
  3324. Warning (15706): Node "gpio0_io_out_en[1]" is assigned to location or region, but does not exist in design
  3325. Warning (15706): Node "gpio0_io_out_en[2]" is assigned to location or region, but does not exist in design
  3326. Warning (15706): Node "gpio0_io_out_en[3]" is assigned to location or region, but does not exist in design
  3327. Warning (15706): Node "gpio0_io_out_en[4]" is assigned to location or region, but does not exist in design
  3328. Warning (15706): Node "gpio0_io_out_en[5]" is assigned to location or region, but does not exist in design
  3329. Warning (15706): Node "gpio0_io_out_en[6]" is assigned to location or region, but does not exist in design
  3330. Warning (15706): Node "gpio0_io_out_en[7]" is assigned to location or region, but does not exist in design
  3331. Warning (15706): Node "gpio1_io_in[0]" is assigned to location or region, but does not exist in design
  3332. Warning (15706): Node "gpio1_io_in[1]" is assigned to location or region, but does not exist in design
  3333. Warning (15706): Node "gpio1_io_in[2]" is assigned to location or region, but does not exist in design
  3334. Warning (15706): Node "gpio1_io_in[3]" is assigned to location or region, but does not exist in design
  3335. Warning (15706): Node "gpio1_io_in[4]" is assigned to location or region, but does not exist in design
  3336. Warning (15706): Node "gpio1_io_in[5]" is assigned to location or region, but does not exist in design
  3337. Warning (15706): Node "gpio1_io_in[6]" is assigned to location or region, but does not exist in design
  3338. Warning (15706): Node "gpio1_io_in[7]" is assigned to location or region, but does not exist in design
  3339. Warning (15706): Node "gpio1_io_out_data[0]" is assigned to location or region, but does not exist in design
  3340. Warning (15706): Node "gpio1_io_out_data[1]" is assigned to location or region, but does not exist in design
  3341. Warning (15706): Node "gpio1_io_out_data[2]" is assigned to location or region, but does not exist in design
  3342. Warning (15706): Node "gpio1_io_out_data[3]" is assigned to location or region, but does not exist in design
  3343. Warning (15706): Node "gpio1_io_out_data[4]" is assigned to location or region, but does not exist in design
  3344. Warning (15706): Node "gpio1_io_out_data[5]" is assigned to location or region, but does not exist in design
  3345. Warning (15706): Node "gpio1_io_out_data[6]" is assigned to location or region, but does not exist in design
  3346. Warning (15706): Node "gpio1_io_out_data[7]" is assigned to location or region, but does not exist in design
  3347. Warning (15706): Node "gpio1_io_out_en[0]" is assigned to location or region, but does not exist in design
  3348. Warning (15706): Node "gpio1_io_out_en[1]" is assigned to location or region, but does not exist in design
  3349. Warning (15706): Node "gpio1_io_out_en[2]" is assigned to location or region, but does not exist in design
  3350. Warning (15706): Node "gpio1_io_out_en[3]" is assigned to location or region, but does not exist in design
  3351. Warning (15706): Node "gpio1_io_out_en[4]" is assigned to location or region, but does not exist in design
  3352. Warning (15706): Node "gpio1_io_out_en[5]" is assigned to location or region, but does not exist in design
  3353. Warning (15706): Node "gpio1_io_out_en[6]" is assigned to location or region, but does not exist in design
  3354. Warning (15706): Node "gpio1_io_out_en[7]" is assigned to location or region, but does not exist in design
  3355. Warning (15706): Node "gpio2_io_in[0]" is assigned to location or region, but does not exist in design
  3356. Warning (15706): Node "gpio2_io_in[1]" is assigned to location or region, but does not exist in design
  3357. Warning (15706): Node "gpio2_io_in[2]" is assigned to location or region, but does not exist in design
  3358. Warning (15706): Node "gpio2_io_in[3]" is assigned to location or region, but does not exist in design
  3359. Warning (15706): Node "gpio2_io_in[4]" is assigned to location or region, but does not exist in design
  3360. Warning (15706): Node "gpio2_io_in[5]" is assigned to location or region, but does not exist in design
  3361. Warning (15706): Node "gpio2_io_in[6]" is assigned to location or region, but does not exist in design
  3362. Warning (15706): Node "gpio2_io_in[7]" is assigned to location or region, but does not exist in design
  3363. Warning (15706): Node "gpio2_io_out_data[0]" is assigned to location or region, but does not exist in design
  3364. Warning (15706): Node "gpio2_io_out_data[1]" is assigned to location or region, but does not exist in design
  3365. Warning (15706): Node "gpio2_io_out_data[2]" is assigned to location or region, but does not exist in design
  3366. Warning (15706): Node "gpio2_io_out_data[3]" is assigned to location or region, but does not exist in design
  3367. Warning (15706): Node "gpio2_io_out_data[4]" is assigned to location or region, but does not exist in design
  3368. Warning (15706): Node "gpio2_io_out_data[5]" is assigned to location or region, but does not exist in design
  3369. Warning (15706): Node "gpio2_io_out_data[6]" is assigned to location or region, but does not exist in design
  3370. Warning (15706): Node "gpio2_io_out_data[7]" is assigned to location or region, but does not exist in design
  3371. Warning (15706): Node "gpio2_io_out_en[0]" is assigned to location or region, but does not exist in design
  3372. Warning (15706): Node "gpio2_io_out_en[1]" is assigned to location or region, but does not exist in design
  3373. Warning (15706): Node "gpio2_io_out_en[2]" is assigned to location or region, but does not exist in design
  3374. Warning (15706): Node "gpio2_io_out_en[3]" is assigned to location or region, but does not exist in design
  3375. Warning (15706): Node "gpio2_io_out_en[4]" is assigned to location or region, but does not exist in design
  3376. Warning (15706): Node "gpio2_io_out_en[5]" is assigned to location or region, but does not exist in design
  3377. Warning (15706): Node "gpio2_io_out_en[6]" is assigned to location or region, but does not exist in design
  3378. Warning (15706): Node "gpio2_io_out_en[7]" is assigned to location or region, but does not exist in design
  3379. Warning (15706): Node "gpio3_io_in[0]" is assigned to location or region, but does not exist in design
  3380. Warning (15706): Node "gpio3_io_in[1]" is assigned to location or region, but does not exist in design
  3381. Warning (15706): Node "gpio3_io_in[2]" is assigned to location or region, but does not exist in design
  3382. Warning (15706): Node "gpio3_io_in[3]" is assigned to location or region, but does not exist in design
  3383. Warning (15706): Node "gpio3_io_in[4]" is assigned to location or region, but does not exist in design
  3384. Warning (15706): Node "gpio3_io_in[5]" is assigned to location or region, but does not exist in design
  3385. Warning (15706): Node "gpio3_io_in[6]" is assigned to location or region, but does not exist in design
  3386. Warning (15706): Node "gpio3_io_in[7]" is assigned to location or region, but does not exist in design
  3387. Warning (15706): Node "gpio3_io_out_data[0]" is assigned to location or region, but does not exist in design
  3388. Warning (15706): Node "gpio3_io_out_data[1]" is assigned to location or region, but does not exist in design
  3389. Warning (15706): Node "gpio3_io_out_data[2]" is assigned to location or region, but does not exist in design
  3390. Warning (15706): Node "gpio3_io_out_data[3]" is assigned to location or region, but does not exist in design
  3391. Warning (15706): Node "gpio3_io_out_data[4]" is assigned to location or region, but does not exist in design
  3392. Warning (15706): Node "gpio3_io_out_data[5]" is assigned to location or region, but does not exist in design
  3393. Warning (15706): Node "gpio3_io_out_data[6]" is assigned to location or region, but does not exist in design
  3394. Warning (15706): Node "gpio3_io_out_data[7]" is assigned to location or region, but does not exist in design
  3395. Warning (15706): Node "gpio3_io_out_en[0]" is assigned to location or region, but does not exist in design
  3396. Warning (15706): Node "gpio3_io_out_en[1]" is assigned to location or region, but does not exist in design
  3397. Warning (15706): Node "gpio3_io_out_en[2]" is assigned to location or region, but does not exist in design
  3398. Warning (15706): Node "gpio3_io_out_en[3]" is assigned to location or region, but does not exist in design
  3399. Warning (15706): Node "gpio3_io_out_en[4]" is assigned to location or region, but does not exist in design
  3400. Warning (15706): Node "gpio3_io_out_en[5]" is assigned to location or region, but does not exist in design
  3401. Warning (15706): Node "gpio3_io_out_en[6]" is assigned to location or region, but does not exist in design
  3402. Warning (15706): Node "gpio3_io_out_en[7]" is assigned to location or region, but does not exist in design
  3403. Warning (15706): Node "gpio4_io_out_data[0]" is assigned to location or region, but does not exist in design
  3404. Warning (15706): Node "gpio4_io_out_data[3]" is assigned to location or region, but does not exist in design
  3405. Warning (15706): Node "gpio4_io_out_data[4]" is assigned to location or region, but does not exist in design
  3406. Warning (15706): Node "gpio4_io_out_data[7]" is assigned to location or region, but does not exist in design
  3407. Warning (15706): Node "gpio4_io_out_en[0]" is assigned to location or region, but does not exist in design
  3408. Warning (15706): Node "gpio4_io_out_en[3]" is assigned to location or region, but does not exist in design
  3409. Warning (15706): Node "gpio4_io_out_en[4]" is assigned to location or region, but does not exist in design
  3410. Warning (15706): Node "gpio4_io_out_en[7]" is assigned to location or region, but does not exist in design
  3411. Warning (15706): Node "gpio5_io_in[0]" is assigned to location or region, but does not exist in design
  3412. Warning (15706): Node "gpio5_io_in[1]" is assigned to location or region, but does not exist in design
  3413. Warning (15706): Node "gpio5_io_in[2]" is assigned to location or region, but does not exist in design
  3414. Warning (15706): Node "gpio5_io_in[3]" is assigned to location or region, but does not exist in design
  3415. Warning (15706): Node "gpio5_io_in[4]" is assigned to location or region, but does not exist in design
  3416. Warning (15706): Node "gpio5_io_in[5]" is assigned to location or region, but does not exist in design
  3417. Warning (15706): Node "gpio5_io_in[6]" is assigned to location or region, but does not exist in design
  3418. Warning (15706): Node "gpio5_io_in[7]" is assigned to location or region, but does not exist in design
  3419. Warning (15706): Node "gpio5_io_out_data[0]" is assigned to location or region, but does not exist in design
  3420. Warning (15706): Node "gpio5_io_out_data[1]" is assigned to location or region, but does not exist in design
  3421. Warning (15706): Node "gpio5_io_out_data[2]" is assigned to location or region, but does not exist in design
  3422. Warning (15706): Node "gpio5_io_out_data[3]" is assigned to location or region, but does not exist in design
  3423. Warning (15706): Node "gpio5_io_out_data[4]" is assigned to location or region, but does not exist in design
  3424. Warning (15706): Node "gpio5_io_out_data[5]" is assigned to location or region, but does not exist in design
  3425. Warning (15706): Node "gpio5_io_out_data[6]" is assigned to location or region, but does not exist in design
  3426. Warning (15706): Node "gpio5_io_out_data[7]" is assigned to location or region, but does not exist in design
  3427. Warning (15706): Node "gpio5_io_out_en[0]" is assigned to location or region, but does not exist in design
  3428. Warning (15706): Node "gpio5_io_out_en[1]" is assigned to location or region, but does not exist in design
  3429. Warning (15706): Node "gpio5_io_out_en[2]" is assigned to location or region, but does not exist in design
  3430. Warning (15706): Node "gpio5_io_out_en[3]" is assigned to location or region, but does not exist in design
  3431. Warning (15706): Node "gpio5_io_out_en[4]" is assigned to location or region, but does not exist in design
  3432. Warning (15706): Node "gpio5_io_out_en[5]" is assigned to location or region, but does not exist in design
  3433. Warning (15706): Node "gpio5_io_out_en[6]" is assigned to location or region, but does not exist in design
  3434. Warning (15706): Node "gpio5_io_out_en[7]" is assigned to location or region, but does not exist in design
  3435. Warning (15706): Node "gpio6_io_out_data[0]" is assigned to location or region, but does not exist in design
  3436. Warning (15706): Node "gpio6_io_out_data[1]" is assigned to location or region, but does not exist in design
  3437. Warning (15706): Node "gpio6_io_out_data[2]" is assigned to location or region, but does not exist in design
  3438. Warning (15706): Node "gpio6_io_out_data[3]" is assigned to location or region, but does not exist in design
  3439. Warning (15706): Node "gpio6_io_out_data[4]" is assigned to location or region, but does not exist in design
  3440. Warning (15706): Node "gpio6_io_out_data[5]" is assigned to location or region, but does not exist in design
  3441. Warning (15706): Node "gpio6_io_out_data[6]" is assigned to location or region, but does not exist in design
  3442. Warning (15706): Node "gpio6_io_out_data[7]" is assigned to location or region, but does not exist in design
  3443. Warning (15706): Node "gpio6_io_out_en[0]" is assigned to location or region, but does not exist in design
  3444. Warning (15706): Node "gpio6_io_out_en[1]" is assigned to location or region, but does not exist in design
  3445. Warning (15706): Node "gpio6_io_out_en[2]" is assigned to location or region, but does not exist in design
  3446. Warning (15706): Node "gpio6_io_out_en[3]" is assigned to location or region, but does not exist in design
  3447. Warning (15706): Node "gpio6_io_out_en[4]" is assigned to location or region, but does not exist in design
  3448. Warning (15706): Node "gpio6_io_out_en[5]" is assigned to location or region, but does not exist in design
  3449. Warning (15706): Node "gpio6_io_out_en[6]" is assigned to location or region, but does not exist in design
  3450. Warning (15706): Node "gpio6_io_out_en[7]" is assigned to location or region, but does not exist in design
  3451. Warning (15706): Node "gpio7_io_in[0]" is assigned to location or region, but does not exist in design
  3452. Warning (15706): Node "gpio7_io_in[1]" is assigned to location or region, but does not exist in design
  3453. Warning (15706): Node "gpio7_io_in[2]" is assigned to location or region, but does not exist in design
  3454. Warning (15706): Node "gpio7_io_in[3]" is assigned to location or region, but does not exist in design
  3455. Warning (15706): Node "gpio7_io_in[4]" is assigned to location or region, but does not exist in design
  3456. Warning (15706): Node "gpio7_io_in[5]" is assigned to location or region, but does not exist in design
  3457. Warning (15706): Node "gpio7_io_in[6]" is assigned to location or region, but does not exist in design
  3458. Warning (15706): Node "gpio7_io_in[7]" is assigned to location or region, but does not exist in design
  3459. Warning (15706): Node "gpio7_io_out_data[0]" is assigned to location or region, but does not exist in design
  3460. Warning (15706): Node "gpio7_io_out_data[1]" is assigned to location or region, but does not exist in design
  3461. Warning (15706): Node "gpio7_io_out_data[2]" is assigned to location or region, but does not exist in design
  3462. Warning (15706): Node "gpio7_io_out_data[3]" is assigned to location or region, but does not exist in design
  3463. Warning (15706): Node "gpio7_io_out_data[4]" is assigned to location or region, but does not exist in design
  3464. Warning (15706): Node "gpio7_io_out_data[5]" is assigned to location or region, but does not exist in design
  3465. Warning (15706): Node "gpio7_io_out_data[7]" is assigned to location or region, but does not exist in design
  3466. Warning (15706): Node "gpio7_io_out_en[0]" is assigned to location or region, but does not exist in design
  3467. Warning (15706): Node "gpio7_io_out_en[1]" is assigned to location or region, but does not exist in design
  3468. Warning (15706): Node "gpio7_io_out_en[2]" is assigned to location or region, but does not exist in design
  3469. Warning (15706): Node "gpio7_io_out_en[3]" is assigned to location or region, but does not exist in design
  3470. Warning (15706): Node "gpio7_io_out_en[4]" is assigned to location or region, but does not exist in design
  3471. Warning (15706): Node "gpio7_io_out_en[5]" is assigned to location or region, but does not exist in design
  3472. Warning (15706): Node "gpio7_io_out_en[7]" is assigned to location or region, but does not exist in design
  3473. Warning (15706): Node "gpio8_io_in[0]" is assigned to location or region, but does not exist in design
  3474. Warning (15706): Node "gpio8_io_in[1]" is assigned to location or region, but does not exist in design
  3475. Warning (15706): Node "gpio8_io_in[2]" is assigned to location or region, but does not exist in design
  3476. Warning (15706): Node "gpio8_io_in[3]" is assigned to location or region, but does not exist in design
  3477. Warning (15706): Node "gpio8_io_in[4]" is assigned to location or region, but does not exist in design
  3478. Warning (15706): Node "gpio8_io_in[5]" is assigned to location or region, but does not exist in design
  3479. Warning (15706): Node "gpio8_io_in[6]" is assigned to location or region, but does not exist in design
  3480. Warning (15706): Node "gpio8_io_in[7]" is assigned to location or region, but does not exist in design
  3481. Warning (15706): Node "gpio8_io_out_data[1]" is assigned to location or region, but does not exist in design
  3482. Warning (15706): Node "gpio8_io_out_data[2]" is assigned to location or region, but does not exist in design
  3483. Warning (15706): Node "gpio8_io_out_data[3]" is assigned to location or region, but does not exist in design
  3484. Warning (15706): Node "gpio8_io_out_data[4]" is assigned to location or region, but does not exist in design
  3485. Warning (15706): Node "gpio8_io_out_data[5]" is assigned to location or region, but does not exist in design
  3486. Warning (15706): Node "gpio8_io_out_data[6]" is assigned to location or region, but does not exist in design
  3487. Warning (15706): Node "gpio8_io_out_data[7]" is assigned to location or region, but does not exist in design
  3488. Warning (15706): Node "gpio8_io_out_en[1]" is assigned to location or region, but does not exist in design
  3489. Warning (15706): Node "gpio8_io_out_en[2]" is assigned to location or region, but does not exist in design
  3490. Warning (15706): Node "gpio8_io_out_en[3]" is assigned to location or region, but does not exist in design
  3491. Warning (15706): Node "gpio8_io_out_en[4]" is assigned to location or region, but does not exist in design
  3492. Warning (15706): Node "gpio8_io_out_en[5]" is assigned to location or region, but does not exist in design
  3493. Warning (15706): Node "gpio8_io_out_en[6]" is assigned to location or region, but does not exist in design
  3494. Warning (15706): Node "gpio8_io_out_en[7]" is assigned to location or region, but does not exist in design
  3495. Warning (15706): Node "gpio9_io_in[0]" is assigned to location or region, but does not exist in design
  3496. Warning (15706): Node "gpio9_io_in[1]" is assigned to location or region, but does not exist in design
  3497. Warning (15706): Node "gpio9_io_in[2]" is assigned to location or region, but does not exist in design
  3498. Warning (15706): Node "gpio9_io_in[3]" is assigned to location or region, but does not exist in design
  3499. Warning (15706): Node "gpio9_io_in[4]" is assigned to location or region, but does not exist in design
  3500. Warning (15706): Node "gpio9_io_in[5]" is assigned to location or region, but does not exist in design
  3501. Warning (15706): Node "gpio9_io_in[6]" is assigned to location or region, but does not exist in design
  3502. Warning (15706): Node "gpio9_io_in[7]" is assigned to location or region, but does not exist in design
  3503. Warning (15706): Node "gpio9_io_out_data[0]" is assigned to location or region, but does not exist in design
  3504. Warning (15706): Node "gpio9_io_out_data[1]" is assigned to location or region, but does not exist in design
  3505. Warning (15706): Node "gpio9_io_out_data[2]" is assigned to location or region, but does not exist in design
  3506. Warning (15706): Node "gpio9_io_out_data[3]" is assigned to location or region, but does not exist in design
  3507. Warning (15706): Node "gpio9_io_out_data[4]" is assigned to location or region, but does not exist in design
  3508. Warning (15706): Node "gpio9_io_out_data[5]" is assigned to location or region, but does not exist in design
  3509. Warning (15706): Node "gpio9_io_out_data[6]" is assigned to location or region, but does not exist in design
  3510. Warning (15706): Node "gpio9_io_out_data[7]" is assigned to location or region, but does not exist in design
  3511. Warning (15706): Node "gpio9_io_out_en[0]" is assigned to location or region, but does not exist in design
  3512. Warning (15706): Node "gpio9_io_out_en[1]" is assigned to location or region, but does not exist in design
  3513. Warning (15706): Node "gpio9_io_out_en[2]" is assigned to location or region, but does not exist in design
  3514. Warning (15706): Node "gpio9_io_out_en[3]" is assigned to location or region, but does not exist in design
  3515. Warning (15706): Node "gpio9_io_out_en[4]" is assigned to location or region, but does not exist in design
  3516. Warning (15706): Node "gpio9_io_out_en[5]" is assigned to location or region, but does not exist in design
  3517. Warning (15706): Node "gpio9_io_out_en[6]" is assigned to location or region, but does not exist in design
  3518. Warning (15706): Node "gpio9_io_out_en[7]" is assigned to location or region, but does not exist in design
  3519. Warning (15706): Node "local_int[0]" is assigned to location or region, but does not exist in design
  3520. Warning (15706): Node "local_int[1]" is assigned to location or region, but does not exist in design
  3521. Warning (15706): Node "local_int[2]" is assigned to location or region, but does not exist in design
  3522. Warning (15706): Node "local_int[3]" is assigned to location or region, but does not exist in design
  3523. Warning (15706): Node "mem_ahb_haddr[0]" is assigned to location or region, but does not exist in design
  3524. Warning (15706): Node "mem_ahb_haddr[10]" is assigned to location or region, but does not exist in design
  3525. Warning (15706): Node "mem_ahb_haddr[11]" is assigned to location or region, but does not exist in design
  3526. Warning (15706): Node "mem_ahb_haddr[12]" is assigned to location or region, but does not exist in design
  3527. Warning (15706): Node "mem_ahb_haddr[13]" is assigned to location or region, but does not exist in design
  3528. Warning (15706): Node "mem_ahb_haddr[14]" is assigned to location or region, but does not exist in design
  3529. Warning (15706): Node "mem_ahb_haddr[15]" is assigned to location or region, but does not exist in design
  3530. Warning (15706): Node "mem_ahb_haddr[16]" is assigned to location or region, but does not exist in design
  3531. Warning (15706): Node "mem_ahb_haddr[17]" is assigned to location or region, but does not exist in design
  3532. Warning (15706): Node "mem_ahb_haddr[18]" is assigned to location or region, but does not exist in design
  3533. Warning (15706): Node "mem_ahb_haddr[19]" is assigned to location or region, but does not exist in design
  3534. Warning (15706): Node "mem_ahb_haddr[1]" is assigned to location or region, but does not exist in design
  3535. Warning (15706): Node "mem_ahb_haddr[20]" is assigned to location or region, but does not exist in design
  3536. Warning (15706): Node "mem_ahb_haddr[21]" is assigned to location or region, but does not exist in design
  3537. Warning (15706): Node "mem_ahb_haddr[22]" is assigned to location or region, but does not exist in design
  3538. Warning (15706): Node "mem_ahb_haddr[23]" is assigned to location or region, but does not exist in design
  3539. Warning (15706): Node "mem_ahb_haddr[24]" is assigned to location or region, but does not exist in design
  3540. Warning (15706): Node "mem_ahb_haddr[25]" is assigned to location or region, but does not exist in design
  3541. Warning (15706): Node "mem_ahb_haddr[26]" is assigned to location or region, but does not exist in design
  3542. Warning (15706): Node "mem_ahb_haddr[27]" is assigned to location or region, but does not exist in design
  3543. Warning (15706): Node "mem_ahb_haddr[28]" is assigned to location or region, but does not exist in design
  3544. Warning (15706): Node "mem_ahb_haddr[29]" is assigned to location or region, but does not exist in design
  3545. Warning (15706): Node "mem_ahb_haddr[2]" is assigned to location or region, but does not exist in design
  3546. Warning (15706): Node "mem_ahb_haddr[30]" is assigned to location or region, but does not exist in design
  3547. Warning (15706): Node "mem_ahb_haddr[31]" is assigned to location or region, but does not exist in design
  3548. Warning (15706): Node "mem_ahb_haddr[3]" is assigned to location or region, but does not exist in design
  3549. Warning (15706): Node "mem_ahb_haddr[4]" is assigned to location or region, but does not exist in design
  3550. Warning (15706): Node "mem_ahb_haddr[5]" is assigned to location or region, but does not exist in design
  3551. Warning (15706): Node "mem_ahb_haddr[6]" is assigned to location or region, but does not exist in design
  3552. Warning (15706): Node "mem_ahb_haddr[7]" is assigned to location or region, but does not exist in design
  3553. Warning (15706): Node "mem_ahb_haddr[8]" is assigned to location or region, but does not exist in design
  3554. Warning (15706): Node "mem_ahb_haddr[9]" is assigned to location or region, but does not exist in design
  3555. Warning (15706): Node "mem_ahb_hburst[0]" is assigned to location or region, but does not exist in design
  3556. Warning (15706): Node "mem_ahb_hburst[1]" is assigned to location or region, but does not exist in design
  3557. Warning (15706): Node "mem_ahb_hburst[2]" is assigned to location or region, but does not exist in design
  3558. Warning (15706): Node "mem_ahb_hrdata[0]" is assigned to location or region, but does not exist in design
  3559. Warning (15706): Node "mem_ahb_hrdata[10]" is assigned to location or region, but does not exist in design
  3560. Warning (15706): Node "mem_ahb_hrdata[11]" is assigned to location or region, but does not exist in design
  3561. Warning (15706): Node "mem_ahb_hrdata[12]" is assigned to location or region, but does not exist in design
  3562. Warning (15706): Node "mem_ahb_hrdata[13]" is assigned to location or region, but does not exist in design
  3563. Warning (15706): Node "mem_ahb_hrdata[14]" is assigned to location or region, but does not exist in design
  3564. Warning (15706): Node "mem_ahb_hrdata[15]" is assigned to location or region, but does not exist in design
  3565. Warning (15706): Node "mem_ahb_hrdata[16]" is assigned to location or region, but does not exist in design
  3566. Warning (15706): Node "mem_ahb_hrdata[17]" is assigned to location or region, but does not exist in design
  3567. Warning (15706): Node "mem_ahb_hrdata[18]" is assigned to location or region, but does not exist in design
  3568. Warning (15706): Node "mem_ahb_hrdata[19]" is assigned to location or region, but does not exist in design
  3569. Warning (15706): Node "mem_ahb_hrdata[1]" is assigned to location or region, but does not exist in design
  3570. Warning (15706): Node "mem_ahb_hrdata[20]" is assigned to location or region, but does not exist in design
  3571. Warning (15706): Node "mem_ahb_hrdata[21]" is assigned to location or region, but does not exist in design
  3572. Warning (15706): Node "mem_ahb_hrdata[22]" is assigned to location or region, but does not exist in design
  3573. Warning (15706): Node "mem_ahb_hrdata[23]" is assigned to location or region, but does not exist in design
  3574. Warning (15706): Node "mem_ahb_hrdata[24]" is assigned to location or region, but does not exist in design
  3575. Warning (15706): Node "mem_ahb_hrdata[25]" is assigned to location or region, but does not exist in design
  3576. Warning (15706): Node "mem_ahb_hrdata[26]" is assigned to location or region, but does not exist in design
  3577. Warning (15706): Node "mem_ahb_hrdata[27]" is assigned to location or region, but does not exist in design
  3578. Warning (15706): Node "mem_ahb_hrdata[28]" is assigned to location or region, but does not exist in design
  3579. Warning (15706): Node "mem_ahb_hrdata[29]" is assigned to location or region, but does not exist in design
  3580. Warning (15706): Node "mem_ahb_hrdata[2]" is assigned to location or region, but does not exist in design
  3581. Warning (15706): Node "mem_ahb_hrdata[30]" is assigned to location or region, but does not exist in design
  3582. Warning (15706): Node "mem_ahb_hrdata[31]" is assigned to location or region, but does not exist in design
  3583. Warning (15706): Node "mem_ahb_hrdata[3]" is assigned to location or region, but does not exist in design
  3584. Warning (15706): Node "mem_ahb_hrdata[4]" is assigned to location or region, but does not exist in design
  3585. Warning (15706): Node "mem_ahb_hrdata[5]" is assigned to location or region, but does not exist in design
  3586. Warning (15706): Node "mem_ahb_hrdata[6]" is assigned to location or region, but does not exist in design
  3587. Warning (15706): Node "mem_ahb_hrdata[7]" is assigned to location or region, but does not exist in design
  3588. Warning (15706): Node "mem_ahb_hrdata[8]" is assigned to location or region, but does not exist in design
  3589. Warning (15706): Node "mem_ahb_hrdata[9]" is assigned to location or region, but does not exist in design
  3590. Warning (15706): Node "mem_ahb_hready" is assigned to location or region, but does not exist in design
  3591. Warning (15706): Node "mem_ahb_hreadyout" is assigned to location or region, but does not exist in design
  3592. Warning (15706): Node "mem_ahb_hresp" is assigned to location or region, but does not exist in design
  3593. Warning (15706): Node "mem_ahb_hsize[0]" is assigned to location or region, but does not exist in design
  3594. Warning (15706): Node "mem_ahb_hsize[1]" is assigned to location or region, but does not exist in design
  3595. Warning (15706): Node "mem_ahb_hsize[2]" is assigned to location or region, but does not exist in design
  3596. Warning (15706): Node "mem_ahb_htrans[0]" is assigned to location or region, but does not exist in design
  3597. Warning (15706): Node "mem_ahb_htrans[1]" is assigned to location or region, but does not exist in design
  3598. Warning (15706): Node "mem_ahb_hwdata[0]" is assigned to location or region, but does not exist in design
  3599. Warning (15706): Node "mem_ahb_hwdata[10]" is assigned to location or region, but does not exist in design
  3600. Warning (15706): Node "mem_ahb_hwdata[11]" is assigned to location or region, but does not exist in design
  3601. Warning (15706): Node "mem_ahb_hwdata[12]" is assigned to location or region, but does not exist in design
  3602. Warning (15706): Node "mem_ahb_hwdata[13]" is assigned to location or region, but does not exist in design
  3603. Warning (15706): Node "mem_ahb_hwdata[14]" is assigned to location or region, but does not exist in design
  3604. Warning (15706): Node "mem_ahb_hwdata[15]" is assigned to location or region, but does not exist in design
  3605. Warning (15706): Node "mem_ahb_hwdata[16]" is assigned to location or region, but does not exist in design
  3606. Warning (15706): Node "mem_ahb_hwdata[17]" is assigned to location or region, but does not exist in design
  3607. Warning (15706): Node "mem_ahb_hwdata[18]" is assigned to location or region, but does not exist in design
  3608. Warning (15706): Node "mem_ahb_hwdata[19]" is assigned to location or region, but does not exist in design
  3609. Warning (15706): Node "mem_ahb_hwdata[1]" is assigned to location or region, but does not exist in design
  3610. Warning (15706): Node "mem_ahb_hwdata[20]" is assigned to location or region, but does not exist in design
  3611. Warning (15706): Node "mem_ahb_hwdata[21]" is assigned to location or region, but does not exist in design
  3612. Warning (15706): Node "mem_ahb_hwdata[22]" is assigned to location or region, but does not exist in design
  3613. Warning (15706): Node "mem_ahb_hwdata[23]" is assigned to location or region, but does not exist in design
  3614. Warning (15706): Node "mem_ahb_hwdata[24]" is assigned to location or region, but does not exist in design
  3615. Warning (15706): Node "mem_ahb_hwdata[25]" is assigned to location or region, but does not exist in design
  3616. Warning (15706): Node "mem_ahb_hwdata[26]" is assigned to location or region, but does not exist in design
  3617. Warning (15706): Node "mem_ahb_hwdata[27]" is assigned to location or region, but does not exist in design
  3618. Warning (15706): Node "mem_ahb_hwdata[28]" is assigned to location or region, but does not exist in design
  3619. Warning (15706): Node "mem_ahb_hwdata[29]" is assigned to location or region, but does not exist in design
  3620. Warning (15706): Node "mem_ahb_hwdata[2]" is assigned to location or region, but does not exist in design
  3621. Warning (15706): Node "mem_ahb_hwdata[30]" is assigned to location or region, but does not exist in design
  3622. Warning (15706): Node "mem_ahb_hwdata[31]" is assigned to location or region, but does not exist in design
  3623. Warning (15706): Node "mem_ahb_hwdata[3]" is assigned to location or region, but does not exist in design
  3624. Warning (15706): Node "mem_ahb_hwdata[4]" is assigned to location or region, but does not exist in design
  3625. Warning (15706): Node "mem_ahb_hwdata[5]" is assigned to location or region, but does not exist in design
  3626. Warning (15706): Node "mem_ahb_hwdata[6]" is assigned to location or region, but does not exist in design
  3627. Warning (15706): Node "mem_ahb_hwdata[7]" is assigned to location or region, but does not exist in design
  3628. Warning (15706): Node "mem_ahb_hwdata[8]" is assigned to location or region, but does not exist in design
  3629. Warning (15706): Node "mem_ahb_hwdata[9]" is assigned to location or region, but does not exist in design
  3630. Warning (15706): Node "mem_ahb_hwrite" is assigned to location or region, but does not exist in design
  3631. Warning (15706): Node "resetn_out" is assigned to location or region, but does not exist in design
  3632. Warning (15706): Node "slave_ahb_haddr[0]" is assigned to location or region, but does not exist in design
  3633. Warning (15706): Node "slave_ahb_haddr[10]" is assigned to location or region, but does not exist in design
  3634. Warning (15706): Node "slave_ahb_haddr[11]" is assigned to location or region, but does not exist in design
  3635. Warning (15706): Node "slave_ahb_haddr[12]" is assigned to location or region, but does not exist in design
  3636. Warning (15706): Node "slave_ahb_haddr[13]" is assigned to location or region, but does not exist in design
  3637. Warning (15706): Node "slave_ahb_haddr[14]" is assigned to location or region, but does not exist in design
  3638. Warning (15706): Node "slave_ahb_haddr[15]" is assigned to location or region, but does not exist in design
  3639. Warning (15706): Node "slave_ahb_haddr[16]" is assigned to location or region, but does not exist in design
  3640. Warning (15706): Node "slave_ahb_haddr[17]" is assigned to location or region, but does not exist in design
  3641. Warning (15706): Node "slave_ahb_haddr[18]" is assigned to location or region, but does not exist in design
  3642. Warning (15706): Node "slave_ahb_haddr[19]" is assigned to location or region, but does not exist in design
  3643. Warning (15706): Node "slave_ahb_haddr[1]" is assigned to location or region, but does not exist in design
  3644. Warning (15706): Node "slave_ahb_haddr[20]" is assigned to location or region, but does not exist in design
  3645. Warning (15706): Node "slave_ahb_haddr[21]" is assigned to location or region, but does not exist in design
  3646. Warning (15706): Node "slave_ahb_haddr[22]" is assigned to location or region, but does not exist in design
  3647. Warning (15706): Node "slave_ahb_haddr[23]" is assigned to location or region, but does not exist in design
  3648. Warning (15706): Node "slave_ahb_haddr[24]" is assigned to location or region, but does not exist in design
  3649. Warning (15706): Node "slave_ahb_haddr[25]" is assigned to location or region, but does not exist in design
  3650. Warning (15706): Node "slave_ahb_haddr[26]" is assigned to location or region, but does not exist in design
  3651. Warning (15706): Node "slave_ahb_haddr[27]" is assigned to location or region, but does not exist in design
  3652. Warning (15706): Node "slave_ahb_haddr[28]" is assigned to location or region, but does not exist in design
  3653. Warning (15706): Node "slave_ahb_haddr[29]" is assigned to location or region, but does not exist in design
  3654. Warning (15706): Node "slave_ahb_haddr[2]" is assigned to location or region, but does not exist in design
  3655. Warning (15706): Node "slave_ahb_haddr[30]" is assigned to location or region, but does not exist in design
  3656. Warning (15706): Node "slave_ahb_haddr[31]" is assigned to location or region, but does not exist in design
  3657. Warning (15706): Node "slave_ahb_haddr[3]" is assigned to location or region, but does not exist in design
  3658. Warning (15706): Node "slave_ahb_haddr[4]" is assigned to location or region, but does not exist in design
  3659. Warning (15706): Node "slave_ahb_haddr[5]" is assigned to location or region, but does not exist in design
  3660. Warning (15706): Node "slave_ahb_haddr[6]" is assigned to location or region, but does not exist in design
  3661. Warning (15706): Node "slave_ahb_haddr[7]" is assigned to location or region, but does not exist in design
  3662. Warning (15706): Node "slave_ahb_haddr[8]" is assigned to location or region, but does not exist in design
  3663. Warning (15706): Node "slave_ahb_haddr[9]" is assigned to location or region, but does not exist in design
  3664. Warning (15706): Node "slave_ahb_hburst[0]" is assigned to location or region, but does not exist in design
  3665. Warning (15706): Node "slave_ahb_hburst[1]" is assigned to location or region, but does not exist in design
  3666. Warning (15706): Node "slave_ahb_hburst[2]" is assigned to location or region, but does not exist in design
  3667. Warning (15706): Node "slave_ahb_hrdata[0]" is assigned to location or region, but does not exist in design
  3668. Warning (15706): Node "slave_ahb_hrdata[10]" is assigned to location or region, but does not exist in design
  3669. Warning (15706): Node "slave_ahb_hrdata[11]" is assigned to location or region, but does not exist in design
  3670. Warning (15706): Node "slave_ahb_hrdata[12]" is assigned to location or region, but does not exist in design
  3671. Warning (15706): Node "slave_ahb_hrdata[13]" is assigned to location or region, but does not exist in design
  3672. Warning (15706): Node "slave_ahb_hrdata[14]" is assigned to location or region, but does not exist in design
  3673. Warning (15706): Node "slave_ahb_hrdata[15]" is assigned to location or region, but does not exist in design
  3674. Warning (15706): Node "slave_ahb_hrdata[16]" is assigned to location or region, but does not exist in design
  3675. Warning (15706): Node "slave_ahb_hrdata[17]" is assigned to location or region, but does not exist in design
  3676. Warning (15706): Node "slave_ahb_hrdata[18]" is assigned to location or region, but does not exist in design
  3677. Warning (15706): Node "slave_ahb_hrdata[19]" is assigned to location or region, but does not exist in design
  3678. Warning (15706): Node "slave_ahb_hrdata[1]" is assigned to location or region, but does not exist in design
  3679. Warning (15706): Node "slave_ahb_hrdata[20]" is assigned to location or region, but does not exist in design
  3680. Warning (15706): Node "slave_ahb_hrdata[21]" is assigned to location or region, but does not exist in design
  3681. Warning (15706): Node "slave_ahb_hrdata[22]" is assigned to location or region, but does not exist in design
  3682. Warning (15706): Node "slave_ahb_hrdata[23]" is assigned to location or region, but does not exist in design
  3683. Warning (15706): Node "slave_ahb_hrdata[24]" is assigned to location or region, but does not exist in design
  3684. Warning (15706): Node "slave_ahb_hrdata[25]" is assigned to location or region, but does not exist in design
  3685. Warning (15706): Node "slave_ahb_hrdata[26]" is assigned to location or region, but does not exist in design
  3686. Warning (15706): Node "slave_ahb_hrdata[27]" is assigned to location or region, but does not exist in design
  3687. Warning (15706): Node "slave_ahb_hrdata[28]" is assigned to location or region, but does not exist in design
  3688. Warning (15706): Node "slave_ahb_hrdata[29]" is assigned to location or region, but does not exist in design
  3689. Warning (15706): Node "slave_ahb_hrdata[2]" is assigned to location or region, but does not exist in design
  3690. Warning (15706): Node "slave_ahb_hrdata[30]" is assigned to location or region, but does not exist in design
  3691. Warning (15706): Node "slave_ahb_hrdata[31]" is assigned to location or region, but does not exist in design
  3692. Warning (15706): Node "slave_ahb_hrdata[3]" is assigned to location or region, but does not exist in design
  3693. Warning (15706): Node "slave_ahb_hrdata[4]" is assigned to location or region, but does not exist in design
  3694. Warning (15706): Node "slave_ahb_hrdata[5]" is assigned to location or region, but does not exist in design
  3695. Warning (15706): Node "slave_ahb_hrdata[6]" is assigned to location or region, but does not exist in design
  3696. Warning (15706): Node "slave_ahb_hrdata[7]" is assigned to location or region, but does not exist in design
  3697. Warning (15706): Node "slave_ahb_hrdata[8]" is assigned to location or region, but does not exist in design
  3698. Warning (15706): Node "slave_ahb_hrdata[9]" is assigned to location or region, but does not exist in design
  3699. Warning (15706): Node "slave_ahb_hready" is assigned to location or region, but does not exist in design
  3700. Warning (15706): Node "slave_ahb_hreadyout" is assigned to location or region, but does not exist in design
  3701. Warning (15706): Node "slave_ahb_hresp" is assigned to location or region, but does not exist in design
  3702. Warning (15706): Node "slave_ahb_hsel" is assigned to location or region, but does not exist in design
  3703. Warning (15706): Node "slave_ahb_hsize[0]" is assigned to location or region, but does not exist in design
  3704. Warning (15706): Node "slave_ahb_hsize[1]" is assigned to location or region, but does not exist in design
  3705. Warning (15706): Node "slave_ahb_hsize[2]" is assigned to location or region, but does not exist in design
  3706. Warning (15706): Node "slave_ahb_htrans[0]" is assigned to location or region, but does not exist in design
  3707. Warning (15706): Node "slave_ahb_htrans[1]" is assigned to location or region, but does not exist in design
  3708. Warning (15706): Node "slave_ahb_hwdata[0]" is assigned to location or region, but does not exist in design
  3709. Warning (15706): Node "slave_ahb_hwdata[10]" is assigned to location or region, but does not exist in design
  3710. Warning (15706): Node "slave_ahb_hwdata[11]" is assigned to location or region, but does not exist in design
  3711. Warning (15706): Node "slave_ahb_hwdata[12]" is assigned to location or region, but does not exist in design
  3712. Warning (15706): Node "slave_ahb_hwdata[13]" is assigned to location or region, but does not exist in design
  3713. Warning (15706): Node "slave_ahb_hwdata[14]" is assigned to location or region, but does not exist in design
  3714. Warning (15706): Node "slave_ahb_hwdata[15]" is assigned to location or region, but does not exist in design
  3715. Warning (15706): Node "slave_ahb_hwdata[16]" is assigned to location or region, but does not exist in design
  3716. Warning (15706): Node "slave_ahb_hwdata[17]" is assigned to location or region, but does not exist in design
  3717. Warning (15706): Node "slave_ahb_hwdata[18]" is assigned to location or region, but does not exist in design
  3718. Warning (15706): Node "slave_ahb_hwdata[19]" is assigned to location or region, but does not exist in design
  3719. Warning (15706): Node "slave_ahb_hwdata[1]" is assigned to location or region, but does not exist in design
  3720. Warning (15706): Node "slave_ahb_hwdata[20]" is assigned to location or region, but does not exist in design
  3721. Warning (15706): Node "slave_ahb_hwdata[21]" is assigned to location or region, but does not exist in design
  3722. Warning (15706): Node "slave_ahb_hwdata[22]" is assigned to location or region, but does not exist in design
  3723. Warning (15706): Node "slave_ahb_hwdata[23]" is assigned to location or region, but does not exist in design
  3724. Warning (15706): Node "slave_ahb_hwdata[24]" is assigned to location or region, but does not exist in design
  3725. Warning (15706): Node "slave_ahb_hwdata[25]" is assigned to location or region, but does not exist in design
  3726. Warning (15706): Node "slave_ahb_hwdata[26]" is assigned to location or region, but does not exist in design
  3727. Warning (15706): Node "slave_ahb_hwdata[27]" is assigned to location or region, but does not exist in design
  3728. Warning (15706): Node "slave_ahb_hwdata[28]" is assigned to location or region, but does not exist in design
  3729. Warning (15706): Node "slave_ahb_hwdata[29]" is assigned to location or region, but does not exist in design
  3730. Warning (15706): Node "slave_ahb_hwdata[2]" is assigned to location or region, but does not exist in design
  3731. Warning (15706): Node "slave_ahb_hwdata[30]" is assigned to location or region, but does not exist in design
  3732. Warning (15706): Node "slave_ahb_hwdata[31]" is assigned to location or region, but does not exist in design
  3733. Warning (15706): Node "slave_ahb_hwdata[3]" is assigned to location or region, but does not exist in design
  3734. Warning (15706): Node "slave_ahb_hwdata[4]" is assigned to location or region, but does not exist in design
  3735. Warning (15706): Node "slave_ahb_hwdata[5]" is assigned to location or region, but does not exist in design
  3736. Warning (15706): Node "slave_ahb_hwdata[6]" is assigned to location or region, but does not exist in design
  3737. Warning (15706): Node "slave_ahb_hwdata[7]" is assigned to location or region, but does not exist in design
  3738. Warning (15706): Node "slave_ahb_hwdata[8]" is assigned to location or region, but does not exist in design
  3739. Warning (15706): Node "slave_ahb_hwdata[9]" is assigned to location or region, but does not exist in design
  3740. Warning (15706): Node "slave_ahb_hwrite" is assigned to location or region, but does not exist in design
  3741. Warning (15706): Node "sys_ctrl_hseBypass" is assigned to location or region, but does not exist in design
  3742. Warning (15706): Node "sys_ctrl_hseEnable" is assigned to location or region, but does not exist in design
  3743. Warning (15706): Node "sys_ctrl_pllEnable" is assigned to location or region, but does not exist in design
  3744. Warning (15706): Node "sys_ctrl_sleep" is assigned to location or region, but does not exist in design
  3745. Warning (15706): Node "sys_ctrl_standby" is assigned to location or region, but does not exist in design
  3746. Warning (15706): Node "usb0_id" is assigned to location or region, but does not exist in design
  3747. Info (171121): Fitter preparation operations ending: elapsed time is 00:00:03
  3748. Info (170189): Fitter placement preparation operations beginning
  3749. Info (170190): Fitter placement preparation operations ending: elapsed time is 00:00:00
  3750. Info (170191): Fitter placement operations beginning
  3751. Info (170137): Fitter placement was successful
  3752. Info (170192): Fitter placement operations ending: elapsed time is 00:00:07
  3753. Info (128000): Starting physical synthesis optimizations for speed
  3754. Info (128002): Starting physical synthesis algorithm combinational resynthesis using boolean division
  3755. Info (128003): Physical synthesis algorithm combinational resynthesis using boolean division complete: estimated slack improvement of 0 ps
  3756. Info (128002): Starting physical synthesis algorithm logic replication
  3757. Info (128003): Physical synthesis algorithm logic replication complete: estimated slack improvement of 0 ps
  3758. Info (128001): Physical synthesis optimizations for speed complete: elapsed time is 00:00:01
  3759. Info (170193): Fitter routing operations beginning
  3760. Info (170195): Router estimated average interconnect usage is 0% of the available device resources
  3761. Info (170196): Router estimated peak interconnect usage is 11% of the available device resources in the region that extends from location X47_Y0 to location X58_Y11
  3762. Info (170194): Fitter routing operations ending: elapsed time is 00:00:07
  3763. Info (11888): Total time spent on timing analysis during the Fitter is 1.72 seconds.
  3764. Info (334003): Started post-fitting delay annotation
  3765. Info (334004): Delay annotation completed successfully
  3766. Info (334003): Started post-fitting delay annotation
  3767. Info (334004): Delay annotation completed successfully
  3768. Info (11218): Fitter post-fit operations ending: elapsed time is 00:00:02
  3769. Warning (171167): Found invalid Fitter assignments. See the Ignored Assignments panel in the Fitter Compilation Report for more information.
  3770. Warning (169177): 15 pins must meet Altera requirements for 3.3-, 3.0-, and 2.5-V interfaces. For more information, refer to AN 447: Interfacing Cyclone IV E Devices with 3.3/3.0/2.5-V LVTTL/LVCMOS I/O Systems.
  3771. Info (169178): Pin PIN_HSE uses I/O standard 3.3-V LVTTL at C23
  3772. Info (169178): Pin SPI0_CSN uses I/O standard 3.3-V LVTTL at AF13
  3773. Info (169178): Pin SPI0_SCK uses I/O standard 3.3-V LVTTL at AD12
  3774. Info (169178): Pin UART0_UARTTXD uses I/O standard 3.3-V LVTTL at AD15
  3775. Info (169178): Pin BAUD_RATE uses I/O standard 3.3-V LVTTL at AB17
  3776. Info (169178): Pin GPIO4_1 uses I/O standard 3.3-V LVTTL at AE14
  3777. Info (169178): Pin GPIO4_2 uses I/O standard 3.3-V LVTTL at AB13
  3778. Info (169178): Pin SPI0_SI_IO0 uses I/O standard 3.3-V LVTTL at AB16
  3779. Info (169178): Pin TEST_SINGLE uses I/O standard 3.3-V LVTTL at AG25
  3780. Info (169178): Pin UART1_RX uses I/O standard 3.3-V LVTTL at AG12
  3781. Info (169178): Pin UART1_TX uses I/O standard 3.3-V LVTTL at AC15
  3782. Info (169178): Pin so_io1 uses I/O standard 3.3-V LVTTL at V27
  3783. Info (169178): Pin UART0_UARTRXD uses I/O standard 3.3-V LVTTL at AH12
  3784. Info (169178): Pin PIN_HSI uses I/O standard 3.3-V LVTTL at Y2
  3785. Info (169178): Pin PLL_CLKIN uses I/O standard 3.3-V LVTTL at J1
  3786. Warning (169064): Following 4 pins have no output enable or a GND or VCC output enable - later changes to this connectivity may change fitting results
  3787. Info (169065): Pin BAUD_RATE has a permanently disabled output enable
  3788. Info (169065): Pin TEST_SINGLE has a permanently disabled output enable
  3789. Info (169065): Pin UART1_RX has a permanently disabled output enable
  3790. Info (169065): Pin so_io1 has a permanently disabled output enable
  3791. Info (144001): Generated suppressed messages file D:/LYW/WBJW/CODE/NEW_TSB_3.0/AG32/example/logic/quartus_logs/example_board.fit.smsg
  3792. Info: Quartus II 64-Bit Fitter was successful. 0 errors, 476 warnings
  3793. Info: Peak virtual memory: 5474 megabytes
  3794. Info: Processing ended: Sat May 09 14:19:20 2026
  3795. Info: Elapsed time: 00:00:26
  3796. Info: Total CPU time (on all processors): 00:00:40
  3797. +----------------------------+
  3798. ; Fitter Suppressed Messages ;
  3799. +----------------------------+
  3800. The suppressed messages can be found in D:/LYW/WBJW/CODE/NEW_TSB_3.0/AG32/example/logic/quartus_logs/example_board.fit.smsg.