fpga_boot.fit.rpt 361 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748
  1. Fitter report for fpga_boot
  2. Sat May 09 16:12:18 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. Other Routing Usage Summary
  36. 30. LAB Logic Elements
  37. 31. LAB-wide Signals
  38. 32. LAB Signals Sourced
  39. 33. LAB Signals Sourced Out
  40. 34. LAB Distinct Inputs
  41. 35. I/O Rules Summary
  42. 36. I/O Rules Details
  43. 37. I/O Rules Matrix
  44. 38. Fitter Device Options
  45. 39. Operating Settings and Conditions
  46. 40. Fitter Messages
  47. 41. Fitter Suppressed Messages
  48. ----------------
  49. ; Legal Notice ;
  50. ----------------
  51. Copyright (C) 1991-2013 Altera Corporation
  52. Your use of Altera Corporation's design tools, logic functions
  53. and other software and tools, and its AMPP partner logic
  54. functions, and any output files from any of the foregoing
  55. (including device programming or simulation files), and any
  56. associated documentation or information are expressly subject
  57. to the terms and conditions of the Altera Program License
  58. Subscription Agreement, Altera MegaCore Function License
  59. Agreement, or other applicable license agreement, including,
  60. without limitation, that your use is for the sole purpose of
  61. programming logic devices manufactured by Altera and sold by
  62. Altera or its authorized distributors. Please refer to the
  63. applicable agreement for further details.
  64. +----------------------------------------------------------------------------------+
  65. ; Fitter Summary ;
  66. +------------------------------------+---------------------------------------------+
  67. ; Fitter Status ; Successful - Sat May 09 16:12:18 2026 ;
  68. ; Quartus II 64-Bit Version ; 13.0.0 Build 156 04/24/2013 SJ Full Version ;
  69. ; Revision Name ; fpga_boot ;
  70. ; Top-level Entity Name ; fpga_boot ;
  71. ; Family ; Cyclone IV E ;
  72. ; Device ; EP4CE75F29C8 ;
  73. ; Timing Models ; Final ;
  74. ; Total logic elements ; 44 / 75,408 ( < 1 % ) ;
  75. ; Total combinational functions ; 44 / 75,408 ( < 1 % ) ;
  76. ; Dedicated logic registers ; 1 / 75,408 ( < 1 % ) ;
  77. ; Total registers ; 1 ;
  78. ; Total pins ; 15 / 427 ( 4 % ) ;
  79. ; Total virtual pins ; 1 ;
  80. ; Total memory bits ; 0 / 2,810,880 ( 0 % ) ;
  81. ; Embedded Multiplier 9-bit elements ; 0 / 400 ( 0 % ) ;
  82. ; Total PLLs ; 1 / 4 ( 25 % ) ;
  83. +------------------------------------+---------------------------------------------+
  84. +------------------------------------------------------------------------------------------------------------------------------------------------------------+
  85. ; Fitter Settings ;
  86. +----------------------------------------------------------------------------+---------------------------------------+---------------------------------------+
  87. ; Option ; Setting ; Default Value ;
  88. +----------------------------------------------------------------------------+---------------------------------------+---------------------------------------+
  89. ; Device ; EP4CE75F29C8 ; ;
  90. ; Maximum processors allowed for parallel compilation ; All ; ;
  91. ; Minimum Core Junction Temperature ; 0 ; ;
  92. ; Maximum Core Junction Temperature ; 85 ; ;
  93. ; Router Timing Optimization Level ; MAXIMUM ; Normal ;
  94. ; Placement Effort Multiplier ; 10 ; 1.0 ;
  95. ; Router Effort Multiplier ; 10 ; 1.0 ;
  96. ; Fit Attempts to Skip ; 0 ; 0.0 ;
  97. ; Device I/O Standard ; 3.3-V LVTTL ; ;
  98. ; Optimize Hold Timing ; IO Paths and Minimum TPD Paths ; All Paths ;
  99. ; Optimize Timing for ECOs ; On ; Off ;
  100. ; Final Placement Optimizations ; Always ; Automatically ;
  101. ; Fitter Aggressive Routability Optimizations ; Always ; Automatically ;
  102. ; Perform Physical Synthesis for Combinational Logic for Fitting ; On ; Off ;
  103. ; Perform Physical Synthesis for Combinational Logic for Performance ; On ; Off ;
  104. ; Fitter Effort ; Standard Fit ; Auto Fit ;
  105. ; Physical Synthesis Effort Level ; Extra ; Normal ;
  106. ; Maximum number of global clocks allowed ; 6 ; -1 (Unlimited) ;
  107. ; Use smart compilation ; Off ; Off ;
  108. ; Enable parallel Assembler and TimeQuest Timing Analyzer during compilation ; On ; On ;
  109. ; Enable compact report table ; Off ; Off ;
  110. ; Auto Merge PLLs ; On ; On ;
  111. ; Perform Clocking Topology Analysis During Routing ; Off ; Off ;
  112. ; Optimize Multi-Corner Timing ; On ; On ;
  113. ; PowerPlay Power Optimization ; Normal compilation ; Normal compilation ;
  114. ; SSN Optimization ; Off ; Off ;
  115. ; Optimize Timing ; Normal compilation ; Normal compilation ;
  116. ; Regenerate full fit report during ECO compiles ; Off ; Off ;
  117. ; Optimize IOC Register Placement for Timing ; Normal ; Normal ;
  118. ; Limit to One Fitting Attempt ; Off ; Off ;
  119. ; Fitter Initial Placement Seed ; 1 ; 1 ;
  120. ; PCI I/O ; Off ; Off ;
  121. ; Weak Pull-Up Resistor ; Off ; Off ;
  122. ; Enable Bus-Hold Circuitry ; Off ; Off ;
  123. ; Auto Packed Registers ; Auto ; Auto ;
  124. ; Auto Delay Chains ; On ; On ;
  125. ; Auto Delay Chains for High Fanout Input Pins ; Off ; Off ;
  126. ; Allow Single-ended Buffer for Differential-XSTL Input ; Off ; Off ;
  127. ; Treat Bidirectional Pin as Output Pin ; Off ; Off ;
  128. ; Perform Register Duplication for Performance ; Off ; Off ;
  129. ; Perform Logic to Memory Mapping for Fitting ; Off ; Off ;
  130. ; Perform Register Retiming for Performance ; Off ; Off ;
  131. ; Perform Asynchronous Signal Pipelining ; Off ; Off ;
  132. ; Logic Cell Insertion - Logic Duplication ; Auto ; Auto ;
  133. ; Auto Register Duplication ; Auto ; Auto ;
  134. ; Auto Global Clock ; On ; On ;
  135. ; Auto Global Register Control Signals ; On ; On ;
  136. ; Reserve all unused pins ; As input tri-stated with weak pull-up ; As input tri-stated with weak pull-up ;
  137. ; Synchronizer Identification ; Off ; Off ;
  138. ; Enable Beneficial Skew Optimization ; On ; On ;
  139. ; Optimize Design for Metastability ; On ; On ;
  140. ; Force Fitter to Avoid Periphery Placement Warnings ; Off ; Off ;
  141. ; Enable input tri-state on active configuration pins in user mode ; Off ; Off ;
  142. +----------------------------------------------------------------------------+---------------------------------------+---------------------------------------+
  143. +------------------------------------------+
  144. ; Parallel Compilation ;
  145. +----------------------------+-------------+
  146. ; Processors ; Number ;
  147. +----------------------------+-------------+
  148. ; Number detected on machine ; 8 ;
  149. ; Maximum allowed ; 4 ;
  150. ; ; ;
  151. ; Average used ; 2.41 ;
  152. ; Maximum used ; 4 ;
  153. ; ; ;
  154. ; Usage by Processor ; % Time Used ;
  155. ; Processor 1 ; 100.0% ;
  156. ; Processors 2-4 ; 47.1% ;
  157. ; Processors 5-8 ; 0.0% ;
  158. +----------------------------+-------------+
  159. +----------------------------------------+
  160. ; I/O Assignment Warnings ;
  161. +---------------+------------------------+
  162. ; Pin Name ; Reason ;
  163. +---------------+------------------------+
  164. ; SPI0_CSN ; Missing drive strength ;
  165. ; SPI0_SCK ; Missing drive strength ;
  166. ; UART0_UARTTXD ; Missing drive strength ;
  167. ; BAUD_RATE ; Missing drive strength ;
  168. ; GPIO4_1 ; Missing drive strength ;
  169. ; GPIO4_2 ; Missing drive strength ;
  170. ; SPI0_SI_IO0 ; Missing drive strength ;
  171. ; TEST_SINGLE ; Missing drive strength ;
  172. ; UART1_RX ; Missing drive strength ;
  173. ; UART1_TX ; Missing drive strength ;
  174. ; so_io1 ; Missing drive strength ;
  175. +---------------+------------------------+
  176. +------------------------------------------------------------------------------------------------------------+
  177. ; Ignored Assignments ;
  178. +---------------+----------------+--------------+----------------------+--------------------+----------------+
  179. ; Name ; Ignored Entity ; Ignored From ; Ignored To ; Ignored Value ; Ignored Source ;
  180. +---------------+----------------+--------------+----------------------+--------------------+----------------+
  181. ; Location ; ; ; dmactive ; LCCOMB_X53_Y4_N20 ; QSF Assignment ;
  182. ; Location ; ; ; ext_dma_DMACBREQ[0] ; LCCOMB_X52_Y4_N0 ; QSF Assignment ;
  183. ; Location ; ; ; ext_dma_DMACBREQ[1] ; LCCOMB_X52_Y4_N2 ; QSF Assignment ;
  184. ; Location ; ; ; ext_dma_DMACBREQ[2] ; LCCOMB_X52_Y4_N4 ; QSF Assignment ;
  185. ; Location ; ; ; ext_dma_DMACBREQ[3] ; LCCOMB_X52_Y4_N6 ; QSF Assignment ;
  186. ; Location ; ; ; ext_dma_DMACCLR[0] ; LCCOMB_X54_Y4_N12 ; QSF Assignment ;
  187. ; Location ; ; ; ext_dma_DMACCLR[1] ; LCCOMB_X54_Y4_N14 ; QSF Assignment ;
  188. ; Location ; ; ; ext_dma_DMACCLR[2] ; LCCOMB_X54_Y4_N16 ; QSF Assignment ;
  189. ; Location ; ; ; ext_dma_DMACCLR[3] ; LCCOMB_X54_Y4_N18 ; QSF Assignment ;
  190. ; Location ; ; ; ext_dma_DMACLBREQ[0] ; LCCOMB_X52_Y4_N8 ; QSF Assignment ;
  191. ; Location ; ; ; ext_dma_DMACLBREQ[1] ; LCCOMB_X52_Y4_N10 ; QSF Assignment ;
  192. ; Location ; ; ; ext_dma_DMACLBREQ[2] ; LCCOMB_X52_Y4_N12 ; QSF Assignment ;
  193. ; Location ; ; ; ext_dma_DMACLBREQ[3] ; LCCOMB_X52_Y4_N14 ; QSF Assignment ;
  194. ; Location ; ; ; ext_dma_DMACLSREQ[0] ; LCCOMB_X53_Y4_N8 ; QSF Assignment ;
  195. ; Location ; ; ; ext_dma_DMACLSREQ[1] ; LCCOMB_X53_Y4_N10 ; QSF Assignment ;
  196. ; Location ; ; ; ext_dma_DMACLSREQ[2] ; LCCOMB_X53_Y4_N12 ; QSF Assignment ;
  197. ; Location ; ; ; ext_dma_DMACLSREQ[3] ; LCCOMB_X53_Y4_N14 ; QSF Assignment ;
  198. ; Location ; ; ; ext_dma_DMACSREQ[0] ; LCCOMB_X53_Y4_N0 ; QSF Assignment ;
  199. ; Location ; ; ; ext_dma_DMACSREQ[1] ; LCCOMB_X53_Y4_N2 ; QSF Assignment ;
  200. ; Location ; ; ; ext_dma_DMACSREQ[2] ; LCCOMB_X53_Y4_N4 ; QSF Assignment ;
  201. ; Location ; ; ; ext_dma_DMACSREQ[3] ; LCCOMB_X53_Y4_N6 ; QSF Assignment ;
  202. ; Location ; ; ; ext_dma_DMACTC[0] ; LCCOMB_X54_Y4_N20 ; QSF Assignment ;
  203. ; Location ; ; ; ext_dma_DMACTC[1] ; LCCOMB_X54_Y4_N22 ; QSF Assignment ;
  204. ; Location ; ; ; ext_dma_DMACTC[2] ; LCCOMB_X54_Y4_N24 ; QSF Assignment ;
  205. ; Location ; ; ; ext_dma_DMACTC[3] ; LCCOMB_X54_Y4_N26 ; QSF Assignment ;
  206. ; Location ; ; ; ext_int[0] ; LCCOMB_X51_Y4_N2 ; QSF Assignment ;
  207. ; Location ; ; ; ext_int[1] ; LCCOMB_X51_Y4_N4 ; QSF Assignment ;
  208. ; Location ; ; ; ext_int[2] ; LCCOMB_X51_Y4_N6 ; QSF Assignment ;
  209. ; Location ; ; ; ext_int[3] ; LCCOMB_X51_Y4_N8 ; QSF Assignment ;
  210. ; Location ; ; ; ext_int[4] ; LCCOMB_X51_Y4_N10 ; QSF Assignment ;
  211. ; Location ; ; ; ext_int[5] ; LCCOMB_X51_Y4_N12 ; QSF Assignment ;
  212. ; Location ; ; ; ext_int[6] ; LCCOMB_X51_Y4_N14 ; QSF Assignment ;
  213. ; Location ; ; ; ext_int[7] ; LCCOMB_X51_Y4_N16 ; QSF Assignment ;
  214. ; Location ; ; ; ext_resetn ; LCCOMB_X51_Y4_N0 ; QSF Assignment ;
  215. ; Location ; ; ; gpio0_io_out_data[1] ; LCCOMB_X57_Y7_N14 ; QSF Assignment ;
  216. ; Location ; ; ; gpio0_io_out_data[2] ; LCCOMB_X57_Y7_N16 ; QSF Assignment ;
  217. ; Location ; ; ; gpio0_io_out_data[3] ; LCCOMB_X57_Y7_N18 ; QSF Assignment ;
  218. ; Location ; ; ; gpio0_io_out_data[4] ; LCCOMB_X57_Y7_N20 ; QSF Assignment ;
  219. ; Location ; ; ; gpio0_io_out_data[5] ; LCCOMB_X57_Y7_N22 ; QSF Assignment ;
  220. ; Location ; ; ; gpio0_io_out_data[6] ; LCCOMB_X57_Y7_N24 ; QSF Assignment ;
  221. ; Location ; ; ; gpio0_io_out_data[7] ; LCCOMB_X57_Y7_N26 ; QSF Assignment ;
  222. ; Location ; ; ; gpio0_io_out_en[1] ; LCCOMB_X57_Y7_N30 ; QSF Assignment ;
  223. ; Location ; ; ; gpio0_io_out_en[2] ; LCCOMB_X58_Y7_N0 ; QSF Assignment ;
  224. ; Location ; ; ; gpio0_io_out_en[3] ; LCCOMB_X58_Y7_N2 ; QSF Assignment ;
  225. ; Location ; ; ; gpio0_io_out_en[4] ; LCCOMB_X57_Y6_N0 ; QSF Assignment ;
  226. ; Location ; ; ; gpio0_io_out_en[5] ; LCCOMB_X57_Y6_N2 ; QSF Assignment ;
  227. ; Location ; ; ; gpio0_io_out_en[6] ; LCCOMB_X57_Y6_N4 ; QSF Assignment ;
  228. ; Location ; ; ; gpio0_io_out_en[7] ; LCCOMB_X57_Y6_N6 ; QSF Assignment ;
  229. ; Location ; ; ; gpio1_io_in[0] ; LCCOMB_X56_Y5_N16 ; QSF Assignment ;
  230. ; Location ; ; ; gpio1_io_in[1] ; LCCOMB_X56_Y5_N18 ; QSF Assignment ;
  231. ; Location ; ; ; gpio1_io_in[2] ; LCCOMB_X56_Y5_N20 ; QSF Assignment ;
  232. ; Location ; ; ; gpio1_io_in[3] ; LCCOMB_X56_Y5_N22 ; QSF Assignment ;
  233. ; Location ; ; ; gpio1_io_in[4] ; LCCOMB_X56_Y5_N24 ; QSF Assignment ;
  234. ; Location ; ; ; gpio1_io_in[5] ; LCCOMB_X56_Y5_N26 ; QSF Assignment ;
  235. ; Location ; ; ; gpio1_io_in[6] ; LCCOMB_X56_Y5_N28 ; QSF Assignment ;
  236. ; Location ; ; ; gpio1_io_in[7] ; LCCOMB_X56_Y5_N30 ; QSF Assignment ;
  237. ; Location ; ; ; gpio1_io_out_data[0] ; LCCOMB_X57_Y6_N8 ; QSF Assignment ;
  238. ; Location ; ; ; gpio1_io_out_data[1] ; LCCOMB_X57_Y6_N10 ; QSF Assignment ;
  239. ; Location ; ; ; gpio1_io_out_data[2] ; LCCOMB_X57_Y6_N12 ; QSF Assignment ;
  240. ; Location ; ; ; gpio1_io_out_data[3] ; LCCOMB_X57_Y6_N14 ; QSF Assignment ;
  241. ; Location ; ; ; gpio1_io_out_data[4] ; LCCOMB_X57_Y6_N16 ; QSF Assignment ;
  242. ; Location ; ; ; gpio1_io_out_data[5] ; LCCOMB_X57_Y6_N18 ; QSF Assignment ;
  243. ; Location ; ; ; gpio1_io_out_data[6] ; LCCOMB_X57_Y6_N20 ; QSF Assignment ;
  244. ; Location ; ; ; gpio1_io_out_data[7] ; LCCOMB_X57_Y6_N22 ; QSF Assignment ;
  245. ; Location ; ; ; gpio1_io_out_en[0] ; LCCOMB_X57_Y6_N24 ; QSF Assignment ;
  246. ; Location ; ; ; gpio1_io_out_en[1] ; LCCOMB_X57_Y6_N26 ; QSF Assignment ;
  247. ; Location ; ; ; gpio1_io_out_en[2] ; LCCOMB_X57_Y6_N28 ; QSF Assignment ;
  248. ; Location ; ; ; gpio1_io_out_en[3] ; LCCOMB_X57_Y6_N30 ; QSF Assignment ;
  249. ; Location ; ; ; gpio1_io_out_en[4] ; LCCOMB_X58_Y6_N0 ; QSF Assignment ;
  250. ; Location ; ; ; gpio1_io_out_en[5] ; LCCOMB_X58_Y6_N2 ; QSF Assignment ;
  251. ; Location ; ; ; gpio1_io_out_en[6] ; LCCOMB_X58_Y6_N4 ; QSF Assignment ;
  252. ; Location ; ; ; gpio1_io_out_en[7] ; LCCOMB_X58_Y6_N6 ; QSF Assignment ;
  253. ; Location ; ; ; gpio2_io_in[0] ; LCCOMB_X43_Y4_N0 ; QSF Assignment ;
  254. ; Location ; ; ; gpio2_io_in[1] ; LCCOMB_X43_Y4_N2 ; QSF Assignment ;
  255. ; Location ; ; ; gpio2_io_in[2] ; LCCOMB_X43_Y4_N4 ; QSF Assignment ;
  256. ; Location ; ; ; gpio2_io_in[3] ; LCCOMB_X43_Y4_N6 ; QSF Assignment ;
  257. ; Location ; ; ; gpio2_io_in[4] ; LCCOMB_X43_Y4_N8 ; QSF Assignment ;
  258. ; Location ; ; ; gpio2_io_in[5] ; LCCOMB_X43_Y4_N10 ; QSF Assignment ;
  259. ; Location ; ; ; gpio2_io_in[6] ; LCCOMB_X43_Y4_N12 ; QSF Assignment ;
  260. ; Location ; ; ; gpio2_io_in[7] ; LCCOMB_X43_Y4_N14 ; QSF Assignment ;
  261. ; Location ; ; ; gpio2_io_out_data[0] ; LCCOMB_X57_Y5_N16 ; QSF Assignment ;
  262. ; Location ; ; ; gpio2_io_out_data[1] ; LCCOMB_X57_Y5_N18 ; QSF Assignment ;
  263. ; Location ; ; ; gpio2_io_out_data[2] ; LCCOMB_X57_Y5_N20 ; QSF Assignment ;
  264. ; Location ; ; ; gpio2_io_out_data[3] ; LCCOMB_X57_Y5_N22 ; QSF Assignment ;
  265. ; Location ; ; ; gpio2_io_out_data[4] ; LCCOMB_X57_Y5_N24 ; QSF Assignment ;
  266. ; Location ; ; ; gpio2_io_out_data[5] ; LCCOMB_X57_Y5_N26 ; QSF Assignment ;
  267. ; Location ; ; ; gpio2_io_out_data[6] ; LCCOMB_X57_Y5_N28 ; QSF Assignment ;
  268. ; Location ; ; ; gpio2_io_out_data[7] ; LCCOMB_X57_Y5_N30 ; QSF Assignment ;
  269. ; Location ; ; ; gpio2_io_out_en[0] ; LCCOMB_X58_Y5_N0 ; QSF Assignment ;
  270. ; Location ; ; ; gpio2_io_out_en[1] ; LCCOMB_X58_Y5_N2 ; QSF Assignment ;
  271. ; Location ; ; ; gpio2_io_out_en[2] ; LCCOMB_X58_Y5_N4 ; QSF Assignment ;
  272. ; Location ; ; ; gpio2_io_out_en[3] ; LCCOMB_X43_Y4_N16 ; QSF Assignment ;
  273. ; Location ; ; ; gpio2_io_out_en[4] ; LCCOMB_X43_Y4_N18 ; QSF Assignment ;
  274. ; Location ; ; ; gpio2_io_out_en[5] ; LCCOMB_X43_Y4_N20 ; QSF Assignment ;
  275. ; Location ; ; ; gpio2_io_out_en[6] ; LCCOMB_X43_Y4_N22 ; QSF Assignment ;
  276. ; Location ; ; ; gpio2_io_out_en[7] ; LCCOMB_X43_Y4_N24 ; QSF Assignment ;
  277. ; Location ; ; ; gpio3_io_in[0] ; LCCOMB_X44_Y4_N0 ; QSF Assignment ;
  278. ; Location ; ; ; gpio3_io_in[1] ; LCCOMB_X44_Y4_N2 ; QSF Assignment ;
  279. ; Location ; ; ; gpio3_io_in[2] ; LCCOMB_X44_Y4_N4 ; QSF Assignment ;
  280. ; Location ; ; ; gpio3_io_in[3] ; LCCOMB_X44_Y4_N6 ; QSF Assignment ;
  281. ; Location ; ; ; gpio3_io_in[4] ; LCCOMB_X44_Y4_N8 ; QSF Assignment ;
  282. ; Location ; ; ; gpio3_io_in[5] ; LCCOMB_X44_Y4_N10 ; QSF Assignment ;
  283. ; Location ; ; ; gpio3_io_in[6] ; LCCOMB_X44_Y4_N12 ; QSF Assignment ;
  284. ; Location ; ; ; gpio3_io_in[7] ; LCCOMB_X44_Y4_N14 ; QSF Assignment ;
  285. ; Location ; ; ; gpio3_io_out_data[0] ; LCCOMB_X43_Y4_N26 ; QSF Assignment ;
  286. ; Location ; ; ; gpio3_io_out_data[1] ; LCCOMB_X43_Y4_N28 ; QSF Assignment ;
  287. ; Location ; ; ; gpio3_io_out_data[2] ; LCCOMB_X43_Y4_N30 ; QSF Assignment ;
  288. ; Location ; ; ; gpio3_io_out_data[3] ; LCCOMB_X43_Y3_N0 ; QSF Assignment ;
  289. ; Location ; ; ; gpio3_io_out_data[4] ; LCCOMB_X43_Y3_N2 ; QSF Assignment ;
  290. ; Location ; ; ; gpio3_io_out_data[5] ; LCCOMB_X43_Y3_N4 ; QSF Assignment ;
  291. ; Location ; ; ; gpio3_io_out_data[6] ; LCCOMB_X43_Y3_N6 ; QSF Assignment ;
  292. ; Location ; ; ; gpio3_io_out_data[7] ; LCCOMB_X44_Y4_N16 ; QSF Assignment ;
  293. ; Location ; ; ; gpio3_io_out_en[0] ; LCCOMB_X44_Y4_N18 ; QSF Assignment ;
  294. ; Location ; ; ; gpio3_io_out_en[1] ; LCCOMB_X44_Y4_N20 ; QSF Assignment ;
  295. ; Location ; ; ; gpio3_io_out_en[2] ; LCCOMB_X44_Y4_N22 ; QSF Assignment ;
  296. ; Location ; ; ; gpio3_io_out_en[3] ; LCCOMB_X44_Y4_N24 ; QSF Assignment ;
  297. ; Location ; ; ; gpio3_io_out_en[4] ; LCCOMB_X44_Y4_N26 ; QSF Assignment ;
  298. ; Location ; ; ; gpio3_io_out_en[5] ; LCCOMB_X44_Y4_N28 ; QSF Assignment ;
  299. ; Location ; ; ; gpio3_io_out_en[6] ; LCCOMB_X44_Y4_N30 ; QSF Assignment ;
  300. ; Location ; ; ; gpio3_io_out_en[7] ; LCCOMB_X44_Y3_N0 ; QSF Assignment ;
  301. ; Location ; ; ; gpio4_io_out_data[0] ; LCCOMB_X44_Y3_N2 ; QSF Assignment ;
  302. ; Location ; ; ; gpio4_io_out_data[3] ; LCCOMB_X45_Y4_N16 ; QSF Assignment ;
  303. ; Location ; ; ; gpio4_io_out_data[4] ; LCCOMB_X45_Y4_N18 ; QSF Assignment ;
  304. ; Location ; ; ; gpio4_io_out_data[7] ; LCCOMB_X45_Y4_N24 ; QSF Assignment ;
  305. ; Location ; ; ; gpio4_io_out_en[0] ; LCCOMB_X45_Y4_N26 ; QSF Assignment ;
  306. ; Location ; ; ; gpio4_io_out_en[3] ; LCCOMB_X45_Y3_N0 ; QSF Assignment ;
  307. ; Location ; ; ; gpio4_io_out_en[4] ; LCCOMB_X45_Y3_N2 ; QSF Assignment ;
  308. ; Location ; ; ; gpio4_io_out_en[7] ; LCCOMB_X46_Y4_N16 ; QSF Assignment ;
  309. ; Location ; ; ; gpio5_io_in[0] ; LCCOMB_X46_Y4_N0 ; QSF Assignment ;
  310. ; Location ; ; ; gpio5_io_in[1] ; LCCOMB_X46_Y4_N2 ; QSF Assignment ;
  311. ; Location ; ; ; gpio5_io_in[2] ; LCCOMB_X46_Y4_N4 ; QSF Assignment ;
  312. ; Location ; ; ; gpio5_io_in[3] ; LCCOMB_X46_Y4_N6 ; QSF Assignment ;
  313. ; Location ; ; ; gpio5_io_in[4] ; LCCOMB_X46_Y4_N8 ; QSF Assignment ;
  314. ; Location ; ; ; gpio5_io_in[5] ; LCCOMB_X46_Y4_N10 ; QSF Assignment ;
  315. ; Location ; ; ; gpio5_io_in[6] ; LCCOMB_X46_Y4_N12 ; QSF Assignment ;
  316. ; Location ; ; ; gpio5_io_in[7] ; LCCOMB_X46_Y4_N14 ; QSF Assignment ;
  317. ; Location ; ; ; gpio5_io_out_data[0] ; LCCOMB_X46_Y4_N18 ; QSF Assignment ;
  318. ; Location ; ; ; gpio5_io_out_data[1] ; LCCOMB_X46_Y4_N20 ; QSF Assignment ;
  319. ; Location ; ; ; gpio5_io_out_data[2] ; LCCOMB_X46_Y4_N22 ; QSF Assignment ;
  320. ; Location ; ; ; gpio5_io_out_data[3] ; LCCOMB_X46_Y4_N24 ; QSF Assignment ;
  321. ; Location ; ; ; gpio5_io_out_data[4] ; LCCOMB_X46_Y4_N26 ; QSF Assignment ;
  322. ; Location ; ; ; gpio5_io_out_data[5] ; LCCOMB_X46_Y4_N28 ; QSF Assignment ;
  323. ; Location ; ; ; gpio5_io_out_data[6] ; LCCOMB_X46_Y4_N30 ; QSF Assignment ;
  324. ; Location ; ; ; gpio5_io_out_data[7] ; LCCOMB_X46_Y3_N0 ; QSF Assignment ;
  325. ; Location ; ; ; gpio5_io_out_en[0] ; LCCOMB_X46_Y3_N2 ; QSF Assignment ;
  326. ; Location ; ; ; gpio5_io_out_en[1] ; LCCOMB_X46_Y3_N4 ; QSF Assignment ;
  327. ; Location ; ; ; gpio5_io_out_en[2] ; LCCOMB_X46_Y3_N6 ; QSF Assignment ;
  328. ; Location ; ; ; gpio5_io_out_en[3] ; LCCOMB_X47_Y4_N16 ; QSF Assignment ;
  329. ; Location ; ; ; gpio5_io_out_en[4] ; LCCOMB_X47_Y4_N18 ; QSF Assignment ;
  330. ; Location ; ; ; gpio5_io_out_en[5] ; LCCOMB_X47_Y4_N20 ; QSF Assignment ;
  331. ; Location ; ; ; gpio5_io_out_en[6] ; LCCOMB_X47_Y4_N22 ; QSF Assignment ;
  332. ; Location ; ; ; gpio5_io_out_en[7] ; LCCOMB_X47_Y4_N24 ; QSF Assignment ;
  333. ; Location ; ; ; gpio6_io_out_data[0] ; LCCOMB_X47_Y4_N26 ; QSF Assignment ;
  334. ; Location ; ; ; gpio6_io_out_data[1] ; LCCOMB_X47_Y4_N28 ; QSF Assignment ;
  335. ; Location ; ; ; gpio6_io_out_data[2] ; LCCOMB_X47_Y4_N30 ; QSF Assignment ;
  336. ; Location ; ; ; gpio6_io_out_data[3] ; LCCOMB_X47_Y3_N0 ; QSF Assignment ;
  337. ; Location ; ; ; gpio6_io_out_data[4] ; LCCOMB_X47_Y3_N2 ; QSF Assignment ;
  338. ; Location ; ; ; gpio6_io_out_data[5] ; LCCOMB_X47_Y3_N4 ; QSF Assignment ;
  339. ; Location ; ; ; gpio6_io_out_data[6] ; LCCOMB_X48_Y4_N16 ; QSF Assignment ;
  340. ; Location ; ; ; gpio6_io_out_data[7] ; LCCOMB_X48_Y4_N18 ; QSF Assignment ;
  341. ; Location ; ; ; gpio6_io_out_en[0] ; LCCOMB_X48_Y4_N20 ; QSF Assignment ;
  342. ; Location ; ; ; gpio6_io_out_en[1] ; LCCOMB_X48_Y4_N22 ; QSF Assignment ;
  343. ; Location ; ; ; gpio6_io_out_en[2] ; LCCOMB_X48_Y4_N24 ; QSF Assignment ;
  344. ; Location ; ; ; gpio6_io_out_en[3] ; LCCOMB_X48_Y4_N26 ; QSF Assignment ;
  345. ; Location ; ; ; gpio6_io_out_en[4] ; LCCOMB_X48_Y4_N28 ; QSF Assignment ;
  346. ; Location ; ; ; gpio6_io_out_en[5] ; LCCOMB_X48_Y4_N30 ; QSF Assignment ;
  347. ; Location ; ; ; gpio6_io_out_en[6] ; LCCOMB_X48_Y3_N0 ; QSF Assignment ;
  348. ; Location ; ; ; gpio6_io_out_en[7] ; LCCOMB_X48_Y3_N2 ; QSF Assignment ;
  349. ; Location ; ; ; gpio7_io_in[0] ; LCCOMB_X48_Y4_N0 ; QSF Assignment ;
  350. ; Location ; ; ; gpio7_io_in[1] ; LCCOMB_X48_Y4_N2 ; QSF Assignment ;
  351. ; Location ; ; ; gpio7_io_in[2] ; LCCOMB_X48_Y4_N4 ; QSF Assignment ;
  352. ; Location ; ; ; gpio7_io_in[3] ; LCCOMB_X48_Y4_N6 ; QSF Assignment ;
  353. ; Location ; ; ; gpio7_io_in[4] ; LCCOMB_X48_Y4_N8 ; QSF Assignment ;
  354. ; Location ; ; ; gpio7_io_in[5] ; LCCOMB_X48_Y4_N10 ; QSF Assignment ;
  355. ; Location ; ; ; gpio7_io_in[6] ; LCCOMB_X48_Y4_N12 ; QSF Assignment ;
  356. ; Location ; ; ; gpio7_io_in[7] ; LCCOMB_X48_Y4_N14 ; QSF Assignment ;
  357. ; Location ; ; ; gpio7_io_out_data[0] ; LCCOMB_X48_Y3_N4 ; QSF Assignment ;
  358. ; Location ; ; ; gpio7_io_out_data[1] ; LCCOMB_X49_Y4_N16 ; QSF Assignment ;
  359. ; Location ; ; ; gpio7_io_out_data[2] ; LCCOMB_X49_Y4_N18 ; QSF Assignment ;
  360. ; Location ; ; ; gpio7_io_out_data[3] ; LCCOMB_X49_Y4_N20 ; QSF Assignment ;
  361. ; Location ; ; ; gpio7_io_out_data[4] ; LCCOMB_X49_Y4_N22 ; QSF Assignment ;
  362. ; Location ; ; ; gpio7_io_out_data[5] ; LCCOMB_X49_Y4_N24 ; QSF Assignment ;
  363. ; Location ; ; ; gpio7_io_out_data[7] ; LCCOMB_X49_Y4_N28 ; QSF Assignment ;
  364. ; Location ; ; ; gpio7_io_out_en[0] ; LCCOMB_X49_Y4_N30 ; QSF Assignment ;
  365. ; Location ; ; ; gpio7_io_out_en[1] ; LCCOMB_X49_Y3_N0 ; QSF Assignment ;
  366. ; Location ; ; ; gpio7_io_out_en[2] ; LCCOMB_X49_Y3_N2 ; QSF Assignment ;
  367. ; Location ; ; ; gpio7_io_out_en[3] ; LCCOMB_X49_Y3_N4 ; QSF Assignment ;
  368. ; Location ; ; ; gpio7_io_out_en[4] ; LCCOMB_X50_Y4_N16 ; QSF Assignment ;
  369. ; Location ; ; ; gpio7_io_out_en[5] ; LCCOMB_X50_Y4_N18 ; QSF Assignment ;
  370. ; Location ; ; ; gpio7_io_out_en[7] ; LCCOMB_X50_Y4_N22 ; QSF Assignment ;
  371. ; Location ; ; ; gpio8_io_in[0] ; LCCOMB_X49_Y4_N0 ; QSF Assignment ;
  372. ; Location ; ; ; gpio8_io_in[1] ; LCCOMB_X49_Y4_N2 ; QSF Assignment ;
  373. ; Location ; ; ; gpio8_io_in[2] ; LCCOMB_X49_Y4_N4 ; QSF Assignment ;
  374. ; Location ; ; ; gpio8_io_in[3] ; LCCOMB_X49_Y4_N6 ; QSF Assignment ;
  375. ; Location ; ; ; gpio8_io_in[4] ; LCCOMB_X49_Y4_N8 ; QSF Assignment ;
  376. ; Location ; ; ; gpio8_io_in[5] ; LCCOMB_X49_Y4_N10 ; QSF Assignment ;
  377. ; Location ; ; ; gpio8_io_in[6] ; LCCOMB_X49_Y4_N12 ; QSF Assignment ;
  378. ; Location ; ; ; gpio8_io_in[7] ; LCCOMB_X49_Y4_N14 ; QSF Assignment ;
  379. ; Location ; ; ; gpio8_io_out_data[0] ; LCCOMB_X50_Y4_N24 ; 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[0] ; LCCOMB_X51_Y4_N18 ; QSF Assignment ;
  388. ; Location ; ; ; gpio8_io_out_en[1] ; LCCOMB_X51_Y4_N20 ; QSF Assignment ;
  389. ; Location ; ; ; gpio8_io_out_en[2] ; LCCOMB_X51_Y4_N22 ; QSF Assignment ;
  390. ; Location ; ; ; gpio8_io_out_en[3] ; LCCOMB_X51_Y4_N24 ; QSF Assignment ;
  391. ; Location ; ; ; gpio8_io_out_en[4] ; LCCOMB_X51_Y4_N26 ; QSF Assignment ;
  392. ; Location ; ; ; gpio8_io_out_en[5] ; LCCOMB_X51_Y4_N28 ; QSF Assignment ;
  393. ; Location ; ; ; gpio8_io_out_en[6] ; LCCOMB_X51_Y4_N30 ; QSF Assignment ;
  394. ; Location ; ; ; gpio8_io_out_en[7] ; LCCOMB_X51_Y3_N0 ; QSF Assignment ;
  395. ; Location ; ; ; gpio9_io_in[0] ; LCCOMB_X50_Y4_N0 ; QSF Assignment ;
  396. ; Location ; ; ; gpio9_io_in[1] ; LCCOMB_X50_Y4_N2 ; QSF Assignment ;
  397. ; Location ; ; ; gpio9_io_in[2] ; LCCOMB_X50_Y4_N4 ; QSF Assignment ;
  398. ; Location ; ; ; gpio9_io_in[3] ; LCCOMB_X50_Y4_N6 ; QSF Assignment ;
  399. ; Location ; ; ; gpio9_io_in[4] ; LCCOMB_X50_Y4_N8 ; QSF Assignment ;
  400. ; Location ; ; ; gpio9_io_in[5] ; LCCOMB_X50_Y4_N10 ; QSF Assignment ;
  401. ; Location ; ; ; gpio9_io_in[6] ; LCCOMB_X50_Y4_N12 ; QSF Assignment ;
  402. ; Location ; ; ; gpio9_io_in[7] ; LCCOMB_X50_Y4_N14 ; QSF Assignment ;
  403. ; Location ; ; ; gpio9_io_out_data[0] ; LCCOMB_X51_Y3_N2 ; QSF Assignment ;
  404. ; Location ; ; ; gpio9_io_out_data[1] ; LCCOMB_X51_Y3_N4 ; QSF Assignment ;
  405. ; Location ; ; ; gpio9_io_out_data[2] ; LCCOMB_X51_Y3_N6 ; QSF Assignment ;
  406. ; Location ; ; ; gpio9_io_out_data[3] ; LCCOMB_X52_Y4_N16 ; QSF Assignment ;
  407. ; Location ; ; ; gpio9_io_out_data[4] ; LCCOMB_X52_Y4_N18 ; QSF Assignment ;
  408. ; Location ; ; ; gpio9_io_out_data[5] ; LCCOMB_X52_Y4_N20 ; QSF Assignment ;
  409. ; Location ; ; ; gpio9_io_out_data[6] ; LCCOMB_X52_Y4_N22 ; QSF Assignment ;
  410. ; Location ; ; ; gpio9_io_out_data[7] ; LCCOMB_X52_Y4_N24 ; QSF Assignment ;
  411. ; Location ; ; ; gpio9_io_out_en[0] ; LCCOMB_X52_Y4_N26 ; QSF Assignment ;
  412. ; Location ; ; ; gpio9_io_out_en[1] ; LCCOMB_X52_Y4_N28 ; QSF Assignment ;
  413. ; Location ; ; ; gpio9_io_out_en[2] ; LCCOMB_X52_Y4_N30 ; QSF Assignment ;
  414. ; Location ; ; ; gpio9_io_out_en[3] ; LCCOMB_X52_Y3_N0 ; QSF Assignment ;
  415. ; Location ; ; ; gpio9_io_out_en[4] ; LCCOMB_X52_Y3_N2 ; QSF Assignment ;
  416. ; Location ; ; ; gpio9_io_out_en[5] ; LCCOMB_X52_Y3_N4 ; QSF Assignment ;
  417. ; Location ; ; ; gpio9_io_out_en[6] ; LCCOMB_X53_Y4_N16 ; QSF Assignment ;
  418. ; Location ; ; ; gpio9_io_out_en[7] ; LCCOMB_X53_Y4_N18 ; QSF Assignment ;
  419. ; Location ; ; ; local_int[0] ; LCCOMB_X54_Y4_N0 ; QSF Assignment ;
  420. ; Location ; ; ; local_int[1] ; LCCOMB_X54_Y4_N2 ; QSF Assignment ;
  421. ; Location ; ; ; local_int[2] ; LCCOMB_X54_Y4_N4 ; QSF Assignment ;
  422. ; Location ; ; ; local_int[3] ; LCCOMB_X54_Y4_N6 ; QSF Assignment ;
  423. ; Location ; ; ; mem_ahb_haddr[0] ; LCCOMB_X57_Y12_N18 ; QSF Assignment ;
  424. ; Location ; ; ; mem_ahb_haddr[10] ; LCCOMB_X57_Y11_N6 ; QSF Assignment ;
  425. ; Location ; ; ; mem_ahb_haddr[11] ; LCCOMB_X57_Y11_N8 ; QSF Assignment ;
  426. ; Location ; ; ; mem_ahb_haddr[12] ; LCCOMB_X57_Y11_N10 ; QSF Assignment ;
  427. ; Location ; ; ; mem_ahb_haddr[13] ; LCCOMB_X57_Y11_N12 ; QSF Assignment ;
  428. ; Location ; ; ; mem_ahb_haddr[14] ; LCCOMB_X57_Y11_N14 ; QSF Assignment ;
  429. ; Location ; ; ; mem_ahb_haddr[15] ; LCCOMB_X57_Y11_N16 ; QSF Assignment ;
  430. ; Location ; ; ; mem_ahb_haddr[16] ; LCCOMB_X57_Y11_N18 ; QSF Assignment ;
  431. ; Location ; ; ; mem_ahb_haddr[17] ; LCCOMB_X57_Y11_N20 ; QSF Assignment ;
  432. ; Location ; ; ; mem_ahb_haddr[18] ; LCCOMB_X57_Y11_N22 ; QSF Assignment ;
  433. ; Location ; ; ; mem_ahb_haddr[19] ; LCCOMB_X57_Y11_N24 ; QSF Assignment ;
  434. ; Location ; ; ; mem_ahb_haddr[1] ; LCCOMB_X57_Y12_N20 ; QSF Assignment ;
  435. ; Location ; ; ; mem_ahb_haddr[20] ; LCCOMB_X57_Y11_N26 ; QSF Assignment ;
  436. ; Location ; ; ; mem_ahb_haddr[21] ; LCCOMB_X57_Y11_N28 ; QSF Assignment ;
  437. ; Location ; ; ; mem_ahb_haddr[22] ; LCCOMB_X57_Y11_N30 ; QSF Assignment ;
  438. ; Location ; ; ; mem_ahb_haddr[23] ; LCCOMB_X58_Y11_N0 ; QSF Assignment ;
  439. ; Location ; ; ; mem_ahb_haddr[24] ; LCCOMB_X58_Y11_N2 ; QSF Assignment ;
  440. ; Location ; ; ; mem_ahb_haddr[25] ; LCCOMB_X58_Y11_N4 ; QSF Assignment ;
  441. ; Location ; ; ; mem_ahb_haddr[26] ; LCCOMB_X58_Y11_N6 ; QSF Assignment ;
  442. ; Location ; ; ; mem_ahb_haddr[27] ; LCCOMB_X58_Y11_N8 ; QSF Assignment ;
  443. ; Location ; ; ; mem_ahb_haddr[28] ; LCCOMB_X58_Y11_N10 ; QSF Assignment ;
  444. ; Location ; ; ; mem_ahb_haddr[29] ; LCCOMB_X58_Y11_N12 ; QSF Assignment ;
  445. ; Location ; ; ; mem_ahb_haddr[2] ; LCCOMB_X57_Y12_N22 ; QSF Assignment ;
  446. ; Location ; ; ; mem_ahb_haddr[30] ; LCCOMB_X56_Y10_N30 ; QSF Assignment ;
  447. ; Location ; ; ; mem_ahb_haddr[31] ; LCCOMB_X57_Y10_N0 ; QSF Assignment ;
  448. ; Location ; ; ; mem_ahb_haddr[3] ; LCCOMB_X57_Y12_N24 ; QSF Assignment ;
  449. ; Location ; ; ; mem_ahb_haddr[4] ; LCCOMB_X57_Y12_N26 ; QSF Assignment ;
  450. ; Location ; ; ; mem_ahb_haddr[5] ; LCCOMB_X57_Y12_N28 ; QSF Assignment ;
  451. ; Location ; ; ; mem_ahb_haddr[6] ; LCCOMB_X57_Y12_N30 ; QSF Assignment ;
  452. ; Location ; ; ; mem_ahb_haddr[7] ; LCCOMB_X58_Y12_N0 ; QSF Assignment ;
  453. ; Location ; ; ; mem_ahb_haddr[8] ; LCCOMB_X58_Y12_N2 ; QSF Assignment ;
  454. ; Location ; ; ; mem_ahb_haddr[9] ; LCCOMB_X58_Y12_N4 ; QSF Assignment ;
  455. ; Location ; ; ; mem_ahb_hburst[0] ; LCCOMB_X57_Y12_N10 ; QSF Assignment ;
  456. ; Location ; ; ; mem_ahb_hburst[1] ; LCCOMB_X57_Y12_N12 ; QSF Assignment ;
  457. ; Location ; ; ; mem_ahb_hburst[2] ; LCCOMB_X57_Y12_N14 ; QSF Assignment ;
  458. ; Location ; ; ; mem_ahb_hrdata[0] ; LCCOMB_X56_Y12_N4 ; QSF Assignment ;
  459. ; Location ; ; ; mem_ahb_hrdata[10] ; LCCOMB_X56_Y12_N24 ; QSF Assignment ;
  460. ; Location ; ; ; mem_ahb_hrdata[11] ; LCCOMB_X56_Y12_N26 ; QSF Assignment ;
  461. ; Location ; ; ; mem_ahb_hrdata[12] ; LCCOMB_X56_Y12_N28 ; QSF Assignment ;
  462. ; Location ; ; ; mem_ahb_hrdata[13] ; LCCOMB_X56_Y11_N0 ; QSF Assignment ;
  463. ; Location ; ; ; mem_ahb_hrdata[14] ; LCCOMB_X56_Y11_N2 ; QSF Assignment ;
  464. ; Location ; ; ; mem_ahb_hrdata[15] ; LCCOMB_X56_Y11_N4 ; QSF Assignment ;
  465. ; Location ; ; ; mem_ahb_hrdata[16] ; LCCOMB_X56_Y11_N6 ; QSF Assignment ;
  466. ; Location ; ; ; mem_ahb_hrdata[17] ; LCCOMB_X56_Y11_N8 ; QSF Assignment ;
  467. ; Location ; ; ; mem_ahb_hrdata[18] ; LCCOMB_X56_Y11_N10 ; QSF Assignment ;
  468. ; Location ; ; ; mem_ahb_hrdata[19] ; LCCOMB_X56_Y11_N12 ; QSF Assignment ;
  469. ; Location ; ; ; mem_ahb_hrdata[1] ; LCCOMB_X56_Y12_N6 ; QSF Assignment ;
  470. ; Location ; ; ; mem_ahb_hrdata[20] ; LCCOMB_X56_Y11_N14 ; QSF Assignment ;
  471. ; Location ; ; ; mem_ahb_hrdata[21] ; LCCOMB_X56_Y11_N16 ; QSF Assignment ;
  472. ; Location ; ; ; mem_ahb_hrdata[22] ; LCCOMB_X56_Y11_N18 ; QSF Assignment ;
  473. ; Location ; ; ; mem_ahb_hrdata[23] ; LCCOMB_X56_Y11_N20 ; QSF Assignment ;
  474. ; Location ; ; ; mem_ahb_hrdata[24] ; LCCOMB_X56_Y11_N22 ; QSF Assignment ;
  475. ; Location ; ; ; mem_ahb_hrdata[25] ; LCCOMB_X56_Y11_N24 ; QSF Assignment ;
  476. ; Location ; ; ; mem_ahb_hrdata[26] ; LCCOMB_X56_Y11_N26 ; QSF Assignment ;
  477. ; Location ; ; ; mem_ahb_hrdata[27] ; LCCOMB_X56_Y11_N28 ; QSF Assignment ;
  478. ; Location ; ; ; mem_ahb_hrdata[28] ; LCCOMB_X56_Y11_N30 ; QSF Assignment ;
  479. ; Location ; ; ; mem_ahb_hrdata[29] ; LCCOMB_X57_Y11_N0 ; QSF Assignment ;
  480. ; Location ; ; ; mem_ahb_hrdata[2] ; LCCOMB_X56_Y12_N8 ; QSF Assignment ;
  481. ; Location ; ; ; mem_ahb_hrdata[30] ; LCCOMB_X57_Y11_N2 ; QSF Assignment ;
  482. ; Location ; ; ; mem_ahb_hrdata[31] ; LCCOMB_X57_Y11_N4 ; QSF Assignment ;
  483. ; Location ; ; ; mem_ahb_hrdata[3] ; LCCOMB_X56_Y12_N10 ; QSF Assignment ;
  484. ; Location ; ; ; mem_ahb_hrdata[4] ; LCCOMB_X56_Y12_N12 ; QSF Assignment ;
  485. ; Location ; ; ; mem_ahb_hrdata[5] ; LCCOMB_X56_Y12_N14 ; QSF Assignment ;
  486. ; Location ; ; ; mem_ahb_hrdata[6] ; LCCOMB_X56_Y12_N16 ; QSF Assignment ;
  487. ; Location ; ; ; mem_ahb_hrdata[7] ; LCCOMB_X56_Y12_N18 ; QSF Assignment ;
  488. ; Location ; ; ; mem_ahb_hrdata[8] ; LCCOMB_X56_Y12_N20 ; QSF Assignment ;
  489. ; Location ; ; ; mem_ahb_hrdata[9] ; LCCOMB_X56_Y12_N22 ; QSF Assignment ;
  490. ; Location ; ; ; mem_ahb_hready ; LCCOMB_X56_Y12_N30 ; QSF Assignment ;
  491. ; Location ; ; ; mem_ahb_hreadyout ; LCCOMB_X56_Y12_N0 ; QSF Assignment ;
  492. ; Location ; ; ; mem_ahb_hresp ; LCCOMB_X56_Y12_N2 ; QSF Assignment ;
  493. ; Location ; ; ; mem_ahb_hsize[0] ; LCCOMB_X57_Y12_N4 ; QSF Assignment ;
  494. ; Location ; ; ; mem_ahb_hsize[1] ; LCCOMB_X57_Y12_N6 ; QSF Assignment ;
  495. ; Location ; ; ; mem_ahb_hsize[2] ; LCCOMB_X57_Y12_N8 ; QSF Assignment ;
  496. ; Location ; ; ; mem_ahb_htrans[0] ; LCCOMB_X57_Y12_N0 ; QSF Assignment ;
  497. ; Location ; ; ; mem_ahb_htrans[1] ; LCCOMB_X57_Y12_N2 ; QSF Assignment ;
  498. ; Location ; ; ; mem_ahb_hwdata[0] ; LCCOMB_X57_Y10_N2 ; QSF Assignment ;
  499. ; Location ; ; ; mem_ahb_hwdata[10] ; LCCOMB_X57_Y10_N22 ; QSF Assignment ;
  500. ; Location ; ; ; mem_ahb_hwdata[11] ; LCCOMB_X57_Y10_N24 ; QSF Assignment ;
  501. ; Location ; ; ; mem_ahb_hwdata[12] ; LCCOMB_X57_Y10_N26 ; QSF Assignment ;
  502. ; Location ; ; ; mem_ahb_hwdata[13] ; LCCOMB_X57_Y10_N28 ; QSF Assignment ;
  503. ; Location ; ; ; mem_ahb_hwdata[14] ; LCCOMB_X57_Y10_N30 ; QSF Assignment ;
  504. ; Location ; ; ; mem_ahb_hwdata[15] ; LCCOMB_X58_Y10_N0 ; QSF Assignment ;
  505. ; Location ; ; ; mem_ahb_hwdata[16] ; LCCOMB_X58_Y10_N2 ; QSF Assignment ;
  506. ; Location ; ; ; mem_ahb_hwdata[17] ; LCCOMB_X58_Y10_N6 ; QSF Assignment ;
  507. ; Location ; ; ; mem_ahb_hwdata[18] ; LCCOMB_X56_Y9_N30 ; QSF Assignment ;
  508. ; Location ; ; ; mem_ahb_hwdata[19] ; LCCOMB_X57_Y9_N0 ; QSF Assignment ;
  509. ; Location ; ; ; mem_ahb_hwdata[1] ; LCCOMB_X57_Y10_N4 ; QSF Assignment ;
  510. ; Location ; ; ; mem_ahb_hwdata[20] ; LCCOMB_X57_Y9_N2 ; QSF Assignment ;
  511. ; Location ; ; ; mem_ahb_hwdata[21] ; LCCOMB_X57_Y9_N4 ; QSF Assignment ;
  512. ; Location ; ; ; mem_ahb_hwdata[22] ; LCCOMB_X57_Y9_N6 ; QSF Assignment ;
  513. ; Location ; ; ; mem_ahb_hwdata[23] ; LCCOMB_X57_Y9_N8 ; QSF Assignment ;
  514. ; Location ; ; ; mem_ahb_hwdata[24] ; LCCOMB_X57_Y9_N10 ; QSF Assignment ;
  515. ; Location ; ; ; mem_ahb_hwdata[25] ; LCCOMB_X57_Y9_N12 ; QSF Assignment ;
  516. ; Location ; ; ; mem_ahb_hwdata[26] ; LCCOMB_X57_Y9_N14 ; QSF Assignment ;
  517. ; Location ; ; ; mem_ahb_hwdata[27] ; LCCOMB_X57_Y9_N16 ; QSF Assignment ;
  518. ; Location ; ; ; mem_ahb_hwdata[28] ; LCCOMB_X57_Y9_N18 ; QSF Assignment ;
  519. ; Location ; ; ; mem_ahb_hwdata[29] ; LCCOMB_X57_Y9_N20 ; QSF Assignment ;
  520. ; Location ; ; ; mem_ahb_hwdata[2] ; LCCOMB_X57_Y10_N6 ; QSF Assignment ;
  521. ; Location ; ; ; mem_ahb_hwdata[30] ; LCCOMB_X57_Y9_N22 ; QSF Assignment ;
  522. ; Location ; ; ; mem_ahb_hwdata[31] ; LCCOMB_X57_Y9_N24 ; QSF Assignment ;
  523. ; Location ; ; ; mem_ahb_hwdata[3] ; LCCOMB_X57_Y10_N8 ; QSF Assignment ;
  524. ; Location ; ; ; mem_ahb_hwdata[4] ; LCCOMB_X57_Y10_N10 ; QSF Assignment ;
  525. ; Location ; ; ; mem_ahb_hwdata[5] ; LCCOMB_X57_Y10_N12 ; QSF Assignment ;
  526. ; Location ; ; ; mem_ahb_hwdata[6] ; LCCOMB_X57_Y10_N14 ; QSF Assignment ;
  527. ; Location ; ; ; mem_ahb_hwdata[7] ; LCCOMB_X57_Y10_N16 ; QSF Assignment ;
  528. ; Location ; ; ; mem_ahb_hwdata[8] ; LCCOMB_X57_Y10_N18 ; QSF Assignment ;
  529. ; Location ; ; ; mem_ahb_hwdata[9] ; LCCOMB_X57_Y10_N20 ; QSF Assignment ;
  530. ; Location ; ; ; mem_ahb_hwrite ; LCCOMB_X57_Y12_N16 ; QSF Assignment ;
  531. ; Location ; ; ; resetn_out ; LCCOMB_X58_Y5_N6 ; QSF Assignment ;
  532. ; Location ; ; ; slave_ahb_haddr[0] ; LCCOMB_X56_Y10_N22 ; QSF Assignment ;
  533. ; Location ; ; ; slave_ahb_haddr[10] ; LCCOMB_X56_Y9_N12 ; QSF Assignment ;
  534. ; Location ; ; ; slave_ahb_haddr[11] ; LCCOMB_X56_Y9_N14 ; QSF Assignment ;
  535. ; Location ; ; ; slave_ahb_haddr[12] ; LCCOMB_X56_Y9_N16 ; QSF Assignment ;
  536. ; Location ; ; ; slave_ahb_haddr[13] ; LCCOMB_X56_Y9_N18 ; QSF Assignment ;
  537. ; Location ; ; ; slave_ahb_haddr[14] ; LCCOMB_X56_Y9_N20 ; QSF Assignment ;
  538. ; Location ; ; ; slave_ahb_haddr[15] ; LCCOMB_X56_Y9_N22 ; QSF Assignment ;
  539. ; Location ; ; ; slave_ahb_haddr[16] ; LCCOMB_X56_Y9_N24 ; QSF Assignment ;
  540. ; Location ; ; ; slave_ahb_haddr[17] ; LCCOMB_X56_Y9_N26 ; QSF Assignment ;
  541. ; Location ; ; ; slave_ahb_haddr[18] ; LCCOMB_X56_Y9_N28 ; QSF Assignment ;
  542. ; Location ; ; ; slave_ahb_haddr[19] ; LCCOMB_X56_Y8_N0 ; QSF Assignment ;
  543. ; Location ; ; ; slave_ahb_haddr[1] ; LCCOMB_X56_Y10_N24 ; QSF Assignment ;
  544. ; Location ; ; ; slave_ahb_haddr[20] ; LCCOMB_X56_Y8_N2 ; QSF Assignment ;
  545. ; Location ; ; ; slave_ahb_haddr[21] ; LCCOMB_X56_Y8_N4 ; QSF Assignment ;
  546. ; Location ; ; ; slave_ahb_haddr[22] ; LCCOMB_X56_Y8_N6 ; QSF Assignment ;
  547. ; Location ; ; ; slave_ahb_haddr[23] ; LCCOMB_X56_Y8_N8 ; QSF Assignment ;
  548. ; Location ; ; ; slave_ahb_haddr[24] ; LCCOMB_X56_Y8_N10 ; QSF Assignment ;
  549. ; Location ; ; ; slave_ahb_haddr[25] ; LCCOMB_X56_Y8_N12 ; QSF Assignment ;
  550. ; Location ; ; ; slave_ahb_haddr[26] ; LCCOMB_X56_Y8_N14 ; QSF Assignment ;
  551. ; Location ; ; ; slave_ahb_haddr[27] ; LCCOMB_X56_Y8_N16 ; QSF Assignment ;
  552. ; Location ; ; ; slave_ahb_haddr[28] ; LCCOMB_X56_Y8_N18 ; QSF Assignment ;
  553. ; Location ; ; ; slave_ahb_haddr[29] ; LCCOMB_X56_Y8_N20 ; QSF Assignment ;
  554. ; Location ; ; ; slave_ahb_haddr[2] ; LCCOMB_X56_Y10_N26 ; QSF Assignment ;
  555. ; Location ; ; ; slave_ahb_haddr[30] ; LCCOMB_X56_Y8_N22 ; QSF Assignment ;
  556. ; Location ; ; ; slave_ahb_haddr[31] ; LCCOMB_X56_Y8_N24 ; QSF Assignment ;
  557. ; Location ; ; ; slave_ahb_haddr[3] ; LCCOMB_X56_Y10_N28 ; QSF Assignment ;
  558. ; Location ; ; ; slave_ahb_haddr[4] ; LCCOMB_X56_Y9_N0 ; QSF Assignment ;
  559. ; Location ; ; ; slave_ahb_haddr[5] ; LCCOMB_X56_Y9_N2 ; QSF Assignment ;
  560. ; Location ; ; ; slave_ahb_haddr[6] ; LCCOMB_X56_Y9_N4 ; QSF Assignment ;
  561. ; Location ; ; ; slave_ahb_haddr[7] ; LCCOMB_X56_Y9_N6 ; QSF Assignment ;
  562. ; Location ; ; ; slave_ahb_haddr[8] ; LCCOMB_X56_Y9_N8 ; QSF Assignment ;
  563. ; Location ; ; ; slave_ahb_haddr[9] ; LCCOMB_X56_Y9_N10 ; QSF Assignment ;
  564. ; Location ; ; ; slave_ahb_hburst[0] ; LCCOMB_X56_Y10_N14 ; QSF Assignment ;
  565. ; Location ; ; ; slave_ahb_hburst[1] ; LCCOMB_X56_Y10_N16 ; QSF Assignment ;
  566. ; Location ; ; ; slave_ahb_hburst[2] ; LCCOMB_X56_Y10_N18 ; QSF Assignment ;
  567. ; Location ; ; ; slave_ahb_hrdata[0] ; LCCOMB_X57_Y9_N30 ; QSF Assignment ;
  568. ; Location ; ; ; slave_ahb_hrdata[10] ; LCCOMB_X57_Y8_N10 ; QSF Assignment ;
  569. ; Location ; ; ; slave_ahb_hrdata[11] ; LCCOMB_X57_Y8_N12 ; QSF Assignment ;
  570. ; Location ; ; ; slave_ahb_hrdata[12] ; LCCOMB_X57_Y8_N14 ; QSF Assignment ;
  571. ; Location ; ; ; slave_ahb_hrdata[13] ; LCCOMB_X57_Y8_N16 ; QSF Assignment ;
  572. ; Location ; ; ; slave_ahb_hrdata[14] ; LCCOMB_X57_Y8_N18 ; QSF Assignment ;
  573. ; Location ; ; ; slave_ahb_hrdata[15] ; LCCOMB_X57_Y8_N20 ; QSF Assignment ;
  574. ; Location ; ; ; slave_ahb_hrdata[16] ; LCCOMB_X57_Y8_N22 ; QSF Assignment ;
  575. ; Location ; ; ; slave_ahb_hrdata[17] ; LCCOMB_X57_Y8_N24 ; QSF Assignment ;
  576. ; Location ; ; ; slave_ahb_hrdata[18] ; LCCOMB_X57_Y8_N26 ; QSF Assignment ;
  577. ; Location ; ; ; slave_ahb_hrdata[19] ; LCCOMB_X57_Y8_N28 ; QSF Assignment ;
  578. ; Location ; ; ; slave_ahb_hrdata[1] ; LCCOMB_X58_Y9_N0 ; QSF Assignment ;
  579. ; Location ; ; ; slave_ahb_hrdata[20] ; LCCOMB_X57_Y8_N30 ; QSF Assignment ;
  580. ; Location ; ; ; slave_ahb_hrdata[21] ; LCCOMB_X58_Y8_N0 ; QSF Assignment ;
  581. ; Location ; ; ; slave_ahb_hrdata[22] ; LCCOMB_X58_Y8_N2 ; QSF Assignment ;
  582. ; Location ; ; ; slave_ahb_hrdata[23] ; LCCOMB_X58_Y8_N4 ; QSF Assignment ;
  583. ; Location ; ; ; slave_ahb_hrdata[24] ; LCCOMB_X56_Y7_N28 ; QSF Assignment ;
  584. ; Location ; ; ; slave_ahb_hrdata[25] ; LCCOMB_X56_Y7_N30 ; QSF Assignment ;
  585. ; Location ; ; ; slave_ahb_hrdata[26] ; LCCOMB_X57_Y7_N0 ; QSF Assignment ;
  586. ; Location ; ; ; slave_ahb_hrdata[27] ; LCCOMB_X57_Y7_N2 ; QSF Assignment ;
  587. ; Location ; ; ; slave_ahb_hrdata[28] ; LCCOMB_X57_Y7_N4 ; QSF Assignment ;
  588. ; Location ; ; ; slave_ahb_hrdata[29] ; LCCOMB_X57_Y7_N6 ; QSF Assignment ;
  589. ; Location ; ; ; slave_ahb_hrdata[2] ; LCCOMB_X58_Y9_N2 ; QSF Assignment ;
  590. ; Location ; ; ; slave_ahb_hrdata[30] ; LCCOMB_X57_Y7_N8 ; QSF Assignment ;
  591. ; Location ; ; ; slave_ahb_hrdata[31] ; LCCOMB_X57_Y7_N10 ; QSF Assignment ;
  592. ; Location ; ; ; slave_ahb_hrdata[3] ; LCCOMB_X58_Y9_N4 ; QSF Assignment ;
  593. ; Location ; ; ; slave_ahb_hrdata[4] ; LCCOMB_X56_Y8_N30 ; QSF Assignment ;
  594. ; Location ; ; ; slave_ahb_hrdata[5] ; LCCOMB_X57_Y8_N0 ; QSF Assignment ;
  595. ; Location ; ; ; slave_ahb_hrdata[6] ; LCCOMB_X57_Y8_N2 ; QSF Assignment ;
  596. ; Location ; ; ; slave_ahb_hrdata[7] ; LCCOMB_X57_Y8_N4 ; QSF Assignment ;
  597. ; Location ; ; ; slave_ahb_hrdata[8] ; LCCOMB_X57_Y8_N6 ; QSF Assignment ;
  598. ; Location ; ; ; slave_ahb_hrdata[9] ; LCCOMB_X57_Y8_N8 ; QSF Assignment ;
  599. ; Location ; ; ; slave_ahb_hready ; LCCOMB_X56_Y10_N2 ; QSF Assignment ;
  600. ; Location ; ; ; slave_ahb_hreadyout ; LCCOMB_X57_Y9_N26 ; QSF Assignment ;
  601. ; Location ; ; ; slave_ahb_hresp ; LCCOMB_X57_Y9_N28 ; QSF Assignment ;
  602. ; Location ; ; ; slave_ahb_hsel ; LCCOMB_X56_Y10_N0 ; QSF Assignment ;
  603. ; Location ; ; ; slave_ahb_hsize[0] ; LCCOMB_X56_Y10_N8 ; QSF Assignment ;
  604. ; Location ; ; ; slave_ahb_hsize[1] ; LCCOMB_X56_Y10_N10 ; QSF Assignment ;
  605. ; Location ; ; ; slave_ahb_hsize[2] ; LCCOMB_X56_Y10_N12 ; QSF Assignment ;
  606. ; Location ; ; ; slave_ahb_htrans[0] ; LCCOMB_X56_Y10_N4 ; QSF Assignment ;
  607. ; Location ; ; ; slave_ahb_htrans[1] ; LCCOMB_X56_Y10_N6 ; QSF Assignment ;
  608. ; Location ; ; ; slave_ahb_hwdata[0] ; LCCOMB_X56_Y8_N26 ; QSF Assignment ;
  609. ; Location ; ; ; slave_ahb_hwdata[10] ; LCCOMB_X56_Y7_N16 ; QSF Assignment ;
  610. ; Location ; ; ; slave_ahb_hwdata[11] ; LCCOMB_X56_Y7_N18 ; QSF Assignment ;
  611. ; Location ; ; ; slave_ahb_hwdata[12] ; LCCOMB_X56_Y7_N20 ; QSF Assignment ;
  612. ; Location ; ; ; slave_ahb_hwdata[13] ; LCCOMB_X56_Y7_N22 ; QSF Assignment ;
  613. ; Location ; ; ; slave_ahb_hwdata[14] ; LCCOMB_X56_Y7_N24 ; QSF Assignment ;
  614. ; Location ; ; ; slave_ahb_hwdata[15] ; LCCOMB_X56_Y7_N26 ; QSF Assignment ;
  615. ; Location ; ; ; slave_ahb_hwdata[16] ; LCCOMB_X56_Y6_N0 ; QSF Assignment ;
  616. ; Location ; ; ; slave_ahb_hwdata[17] ; LCCOMB_X56_Y6_N2 ; QSF Assignment ;
  617. ; Location ; ; ; slave_ahb_hwdata[18] ; LCCOMB_X56_Y6_N4 ; QSF Assignment ;
  618. ; Location ; ; ; slave_ahb_hwdata[19] ; LCCOMB_X56_Y6_N6 ; QSF Assignment ;
  619. ; Location ; ; ; slave_ahb_hwdata[1] ; LCCOMB_X56_Y8_N28 ; QSF Assignment ;
  620. ; Location ; ; ; slave_ahb_hwdata[20] ; LCCOMB_X56_Y6_N8 ; QSF Assignment ;
  621. ; Location ; ; ; slave_ahb_hwdata[21] ; LCCOMB_X56_Y6_N10 ; QSF Assignment ;
  622. ; Location ; ; ; slave_ahb_hwdata[22] ; LCCOMB_X56_Y6_N12 ; QSF Assignment ;
  623. ; Location ; ; ; slave_ahb_hwdata[23] ; LCCOMB_X56_Y6_N14 ; QSF Assignment ;
  624. ; Location ; ; ; slave_ahb_hwdata[24] ; LCCOMB_X56_Y6_N16 ; QSF Assignment ;
  625. ; Location ; ; ; slave_ahb_hwdata[25] ; LCCOMB_X56_Y6_N18 ; QSF Assignment ;
  626. ; Location ; ; ; slave_ahb_hwdata[26] ; LCCOMB_X56_Y6_N20 ; QSF Assignment ;
  627. ; Location ; ; ; slave_ahb_hwdata[27] ; LCCOMB_X56_Y6_N22 ; QSF Assignment ;
  628. ; Location ; ; ; slave_ahb_hwdata[28] ; LCCOMB_X56_Y6_N24 ; QSF Assignment ;
  629. ; Location ; ; ; slave_ahb_hwdata[29] ; LCCOMB_X56_Y6_N26 ; QSF Assignment ;
  630. ; Location ; ; ; slave_ahb_hwdata[2] ; LCCOMB_X56_Y7_N0 ; QSF Assignment ;
  631. ; Location ; ; ; slave_ahb_hwdata[30] ; LCCOMB_X56_Y6_N28 ; QSF Assignment ;
  632. ; Location ; ; ; slave_ahb_hwdata[31] ; LCCOMB_X56_Y6_N30 ; QSF Assignment ;
  633. ; Location ; ; ; slave_ahb_hwdata[3] ; LCCOMB_X56_Y7_N2 ; QSF Assignment ;
  634. ; Location ; ; ; slave_ahb_hwdata[4] ; LCCOMB_X56_Y7_N4 ; QSF Assignment ;
  635. ; Location ; ; ; slave_ahb_hwdata[5] ; LCCOMB_X56_Y7_N6 ; QSF Assignment ;
  636. ; Location ; ; ; slave_ahb_hwdata[6] ; LCCOMB_X56_Y7_N8 ; QSF Assignment ;
  637. ; Location ; ; ; slave_ahb_hwdata[7] ; LCCOMB_X56_Y7_N10 ; QSF Assignment ;
  638. ; Location ; ; ; slave_ahb_hwdata[8] ; LCCOMB_X56_Y7_N12 ; QSF Assignment ;
  639. ; Location ; ; ; slave_ahb_hwdata[9] ; LCCOMB_X56_Y7_N14 ; QSF Assignment ;
  640. ; Location ; ; ; slave_ahb_hwrite ; LCCOMB_X56_Y10_N20 ; QSF Assignment ;
  641. ; Location ; ; ; sys_ctrl_hseBypass ; LCCOMB_X57_Y5_N6 ; QSF Assignment ;
  642. ; Location ; ; ; sys_ctrl_hseEnable ; LCCOMB_X57_Y5_N4 ; QSF Assignment ;
  643. ; Location ; ; ; sys_ctrl_pllEnable ; LCCOMB_X57_Y5_N8 ; QSF Assignment ;
  644. ; Location ; ; ; sys_ctrl_sleep ; LCCOMB_X57_Y5_N10 ; QSF Assignment ;
  645. ; Location ; ; ; sys_ctrl_standby ; LCCOMB_X57_Y5_N14 ; QSF Assignment ;
  646. ; Location ; ; ; sys_ctrl_stop ; LCCOMB_X57_Y5_N12 ; QSF Assignment ;
  647. ; Location ; ; ; usb0_id ; LCCOMB_X54_Y4_N10 ; QSF Assignment ;
  648. ; Global Signal ; fpga_boot ; ; sys_resetn ; GLOBAL_CLOCK ; QSF Assignment ;
  649. +---------------+----------------+--------------+----------------------+--------------------+----------------+
  650. +----------------------------------------------+
  651. ; Incremental Compilation Preservation Summary ;
  652. +---------------------+------------------------+
  653. ; Type ; Value ;
  654. +---------------------+------------------------+
  655. ; Placement (by node) ; ;
  656. ; -- Requested ; 0 / 97 ( 0.00 % ) ;
  657. ; -- Achieved ; 0 / 97 ( 0.00 % ) ;
  658. ; ; ;
  659. ; Routing (by net) ; ;
  660. ; -- Requested ; 0 / 0 ( 0.00 % ) ;
  661. ; -- Achieved ; 0 / 0 ( 0.00 % ) ;
  662. +---------------------+------------------------+
  663. +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  664. ; Incremental Compilation Partition Settings ;
  665. +--------------------------------+----------------+-------------------+-------------------------+------------------------+------------------------------+--------------------------------+
  666. ; Partition Name ; Partition Type ; Netlist Type Used ; Preservation Level Used ; Netlist Type Requested ; Preservation Level Requested ; Contents ;
  667. +--------------------------------+----------------+-------------------+-------------------------+------------------------+------------------------------+--------------------------------+
  668. ; Top ; User-created ; Source File ; N/A ; Source File ; N/A ; ;
  669. ; rv32 ; User-created ; Source File ; N/A ; Source File ; N/A ; alta_rv32:rv32 ;
  670. ; hard_block:auto_generated_inst ; Auto-generated ; Source File ; N/A ; Source File ; N/A ; hard_block:auto_generated_inst ;
  671. +--------------------------------+----------------+-------------------+-------------------------+------------------------+------------------------------+--------------------------------+
  672. +------------------------------------------------------------------------------------------------------------+
  673. ; Incremental Compilation Placement Preservation ;
  674. +--------------------------------+---------+-------------------+-------------------------+-------------------+
  675. ; Partition Name ; # Nodes ; # Preserved Nodes ; Preservation Level Used ; Netlist Type Used ;
  676. +--------------------------------+---------+-------------------+-------------------------+-------------------+
  677. ; Top ; 83 ; 0 ; N/A ; Source File ;
  678. ; rv32 ; 2 ; 0 ; N/A ; Source File ;
  679. ; hard_block:auto_generated_inst ; 12 ; 0 ; N/A ; Source File ;
  680. +--------------------------------+---------+-------------------+-------------------------+-------------------+
  681. +----------------------------------------------------------------------------------------------------------------------------------------------+
  682. ; Incremental Compilation LogicLock Region Preservation ;
  683. +-----------------+------------+------------------+-----------------+------------------+------------------+-----------------+------------------+
  684. ; Region Name ; Partitions ; Requested Origin ; Requested Width ; Requested Height ; Effective Origin ; Effective Width ; Effective Height ;
  685. +-----------------+------------+------------------+-----------------+------------------+------------------+-----------------+------------------+
  686. ; LOGIC_RESERVE_0 ; ; X43_Y5 ; 13 ; 8 ; X43_Y5 ; 13 ; 8 ;
  687. ; core_logic ; Top, rv32 ; X43_Y1 ; 20 ; 12 ; X43_Y1 ; 20 ; 12 ;
  688. +-----------------+------------+------------------+-----------------+------------------+------------------+-----------------+------------------+
  689. Note: The effective origin and size are the region properties taking into account any post-fit logic assigned to the LogicLock region.
  690. +--------------+
  691. ; Pin-Out File ;
  692. +--------------+
  693. The pin-out file can be found in D:/LYW/WBJW/CODE/NEW_TSB_3.0/AG32/9102_BOOT/logic/quartus_logs/fpga_boot.pin.
  694. +---------------------------------------------------------------------+
  695. ; Fitter Resource Usage Summary ;
  696. +---------------------------------------------+-----------------------+
  697. ; Resource ; Usage ;
  698. +---------------------------------------------+-----------------------+
  699. ; Total logic elements ; 44 / 75,408 ( < 1 % ) ;
  700. ; -- Combinational with no register ; 43 ;
  701. ; -- Register only ; 0 ;
  702. ; -- Combinational with a register ; 1 ;
  703. ; ; ;
  704. ; Logic element usage by number of LUT inputs ; ;
  705. ; -- 4 input functions ; 0 ;
  706. ; -- 3 input functions ; 0 ;
  707. ; -- <=2 input functions ; 44 ;
  708. ; -- Register only ; 0 ;
  709. ; ; ;
  710. ; Logic elements by mode ; ;
  711. ; -- normal mode ; 44 ;
  712. ; -- arithmetic mode ; 0 ;
  713. ; ; ;
  714. ; Total registers* ; 1 / 77,471 ( < 1 % ) ;
  715. ; -- Dedicated logic registers ; 1 / 75,408 ( < 1 % ) ;
  716. ; -- I/O registers ; 0 / 2,063 ( 0 % ) ;
  717. ; ; ;
  718. ; Total LABs: partially or completely used ; 12 / 4,713 ( < 1 % ) ;
  719. ; Virtual pins ; 1 ;
  720. ; I/O pins ; 15 / 427 ( 4 % ) ;
  721. ; -- Clock pins ; 2 / 7 ( 29 % ) ;
  722. ; -- Dedicated input pins ; 0 / 9 ( 0 % ) ;
  723. ; ; ;
  724. ; Global signals ; 2 ;
  725. ; M9Ks ; 0 / 305 ( 0 % ) ;
  726. ; Total block memory bits ; 0 / 2,810,880 ( 0 % ) ;
  727. ; Total block memory implementation bits ; 0 / 2,810,880 ( 0 % ) ;
  728. ; Embedded Multiplier 9-bit elements ; 0 / 400 ( 0 % ) ;
  729. ; PLLs ; 1 / 4 ( 25 % ) ;
  730. ; Global clocks ; 2 / 20 ( 10 % ) ;
  731. ; JTAGs ; 0 / 1 ( 0 % ) ;
  732. ; CRC blocks ; 0 / 1 ( 0 % ) ;
  733. ; ASMI blocks ; 0 / 1 ( 0 % ) ;
  734. ; Impedance control blocks ; 0 / 4 ( 0 % ) ;
  735. ; Average interconnect usage (total/H/V) ; 0% / 0% / 0% ;
  736. ; Peak interconnect usage (total/H/V) ; 0% / 0% / 0% ;
  737. ; Maximum fan-out ; 12 ;
  738. ; Highest non-global fan-out ; 12 ;
  739. ; Total fan-out ; 73 ;
  740. ; Average fan-out ; 0.75 ;
  741. +---------------------------------------------+-----------------------+
  742. * Register count does not include registers inside RAM blocks or DSP blocks.
  743. +---------------------------------------------------------------------------------------------------------+
  744. ; LogicLock Region Resource Usage ;
  745. +---------------------------------------------+-------------------+------------------+--------------------+
  746. ; Statistic ; Root Region ; LOGIC_RESERVE_0 ; core_logic ;
  747. +---------------------------------------------+-------------------+------------------+--------------------+
  748. ; Difficulty Clustering Region ; Low ; Low ; Low ;
  749. ; ; ; ; ;
  750. ; Total logic elements ; 0 / 75408 ( 0 % ) ; 0 / 1536 ( 0 % ) ; 44 / 3648 ( 1 % ) ;
  751. ; -- Combinational with no register ; 0 ; 0 ; 43 ;
  752. ; -- Register only ; 0 ; 0 ; 0 ;
  753. ; -- Combinational with a register ; 0 ; 0 ; 1 ;
  754. ; ; ; ; ;
  755. ; Logic element usage by number of LUT inputs ; ; ; ;
  756. ; -- 4 input functions ; 0 ; 0 ; 0 ;
  757. ; -- 3 input functions ; 0 ; 0 ; 0 ;
  758. ; -- <=2 input functions ; 0 ; 0 ; 44 ;
  759. ; -- Register only ; 0 ; 0 ; 0 ;
  760. ; ; ; ; ;
  761. ; Logic elements by mode ; ; ; ;
  762. ; -- normal mode ; 0 ; 0 ; 44 ;
  763. ; -- arithmetic mode ; 0 ; 0 ; 0 ;
  764. ; ; ; ; ;
  765. ; Total registers ; 0 ; 0 ; 1 ;
  766. ; -- Dedicated logic registers ; 0 / 75408 ( 0 % ) ; 0 / 1536 ( 0 % ) ; 1 / 3648 ( < 1 % ) ;
  767. ; ; ; ; ;
  768. ; Total LABs: partially or completely used ; 0 / 4713 ( 0 % ) ; 0 / 96 ( 0 % ) ; 11 / 228 ( 5 % ) ;
  769. ; ; ; ; ;
  770. ; Virtual pins ; 0 ; 0 ; 1 ;
  771. ; I/O pins ; 15 ; 0 ; 0 ;
  772. ; Embedded Multiplier 9-bit elements ; 0 / 400 ( 0 % ) ; 0 ; 0 ;
  773. ; Total memory bits ; 0 ; 0 ; 0 ;
  774. ; Total RAM block bits ; 0 ; 0 ; 0 ;
  775. ; PLL ; 1 / 4 ( 25 % ) ; 0 ; 0 ;
  776. ; Clock control block ; 2 / 24 ( 8 % ) ; 0 ; 0 ;
  777. ; ; ; ; ;
  778. ; Connections ; ; ; ;
  779. ; -- Input Connections ; 15 ; 0 ; 8 ;
  780. ; -- Registered Input Connections ; 0 ; 0 ; 2 ;
  781. ; -- Output Connections ; 8 ; 0 ; 15 ;
  782. ; -- Registered Output Connections ; 0 ; 0 ; 0 ;
  783. ; ; ; ; ;
  784. ; Internal Connections ; ; ; ;
  785. ; -- Total Connections ; 56 ; 0 ; 40 ;
  786. ; -- Registered Connections ; 0 ; 0 ; 3 ;
  787. ; ; ; ; ;
  788. ; External Connections ; ; ; ;
  789. ; -- Root Region ; 0 ; 0 ; 23 ;
  790. ; -- LOGIC_RESERVE_0 ; 0 ; 0 ; 0 ;
  791. ; -- core_logic ; 23 ; 0 ; 0 ;
  792. ; ; ; ; ;
  793. ; Region Placement ; ; ; ;
  794. ; -- Origin ; -- ; X43_Y5 ; X43_Y1 ;
  795. ; -- Width ; -- ; 13 ; 20 ;
  796. ; -- Height ; -- ; 8 ; 12 ;
  797. +---------------------------------------------+-------------------+------------------+--------------------+
  798. +---------------------------------------------------------------------------------------------------------------------------+
  799. ; Fitter Partition Statistics ;
  800. +---------------------------------------------+----------------------+---------------------+--------------------------------+
  801. ; Statistic ; Top ; rv32 ; hard_block:auto_generated_inst ;
  802. +---------------------------------------------+----------------------+---------------------+--------------------------------+
  803. ; Difficulty Clustering Region ; Low ; Low ; Low ;
  804. ; ; ; ; ;
  805. ; Total logic elements ; 43 / 75408 ( < 1 % ) ; 1 / 75408 ( < 1 % ) ; 0 / 75408 ( 0 % ) ;
  806. ; -- Combinational with no register ; 42 ; 1 ; 0 ;
  807. ; -- Register only ; 0 ; 0 ; 0 ;
  808. ; -- Combinational with a register ; 1 ; 0 ; 0 ;
  809. ; ; ; ; ;
  810. ; Logic element usage by number of LUT inputs ; ; ; ;
  811. ; -- 4 input functions ; 0 ; 0 ; 0 ;
  812. ; -- 3 input functions ; 0 ; 0 ; 0 ;
  813. ; -- <=2 input functions ; 43 ; 1 ; 0 ;
  814. ; -- Register only ; 0 ; 0 ; 0 ;
  815. ; ; ; ; ;
  816. ; Logic elements by mode ; ; ; ;
  817. ; -- normal mode ; 43 ; 1 ; 0 ;
  818. ; -- arithmetic mode ; 0 ; 0 ; 0 ;
  819. ; ; ; ; ;
  820. ; Total registers ; 1 ; 0 ; 0 ;
  821. ; -- Dedicated logic registers ; 1 / 75408 ( < 1 % ) ; 0 / 75408 ( 0 % ) ; 0 / 75408 ( 0 % ) ;
  822. ; ; ; ; ;
  823. ; Total LABs: partially or completely used ; 11 / 4713 ( < 1 % ) ; 1 / 4713 ( < 1 % ) ; 0 / 4713 ( 0 % ) ;
  824. ; ; ; ; ;
  825. ; Virtual pins ; 0 ; 1 ; 0 ;
  826. ; I/O pins ; 15 ; 0 ; 0 ;
  827. ; Embedded Multiplier 9-bit elements ; 0 / 400 ( 0 % ) ; 0 / 400 ( 0 % ) ; 0 / 400 ( 0 % ) ;
  828. ; Total memory bits ; 0 ; 0 ; 0 ;
  829. ; Total RAM block bits ; 0 ; 0 ; 0 ;
  830. ; PLL ; 0 / 4 ( 0 % ) ; 0 / 4 ( 0 % ) ; 1 / 4 ( 25 % ) ;
  831. ; Clock control block ; 1 / 24 ( 4 % ) ; 0 / 24 ( 0 % ) ; 1 / 24 ( 4 % ) ;
  832. ; ; ; ; ;
  833. ; Connections ; ; ; ;
  834. ; -- Input Connections ; 25 ; 1 ; 5 ;
  835. ; -- Registered Input Connections ; 1 ; 0 ; 0 ;
  836. ; -- Output Connections ; 16 ; 12 ; 3 ;
  837. ; -- Registered Output Connections ; 0 ; 0 ; 0 ;
  838. ; ; ; ; ;
  839. ; Internal Connections ; ; ; ;
  840. ; -- Total Connections ; 65 ; 13 ; 15 ;
  841. ; -- Registered Connections ; 2 ; 0 ; 0 ;
  842. ; ; ; ; ;
  843. ; External Connections ; ; ; ;
  844. ; -- Top ; 22 ; 12 ; 7 ;
  845. ; -- rv32 ; 12 ; 0 ; 1 ;
  846. ; -- hard_block:auto_generated_inst ; 7 ; 1 ; 0 ;
  847. ; ; ; ; ;
  848. ; Partition Interface ; ; ; ;
  849. ; -- Input Ports ; 4 ; 224 ; 5 ;
  850. ; -- Output Ports ; 3 ; 295 ; 2 ;
  851. ; -- Bidir Ports ; 8 ; 0 ; 0 ;
  852. ; ; ; ; ;
  853. ; Registered Ports ; ; ; ;
  854. ; -- Registered Input Ports ; 0 ; 0 ; 0 ;
  855. ; -- Registered Output Ports ; 0 ; 0 ; 0 ;
  856. ; ; ; ; ;
  857. ; Port Connectivity ; ; ; ;
  858. ; -- Input Ports driven by GND ; 0 ; 213 ; 0 ;
  859. ; -- Output Ports driven by GND ; 0 ; 170 ; 0 ;
  860. ; -- Input Ports driven by VCC ; 0 ; 5 ; 0 ;
  861. ; -- Output Ports driven by VCC ; 0 ; 0 ; 0 ;
  862. ; -- Input Ports with no Source ; 0 ; 0 ; 0 ;
  863. ; -- Output Ports with no Source ; 0 ; 0 ; 0 ;
  864. ; -- Input Ports with no Fanout ; 0 ; 150 ; 0 ;
  865. ; -- Output Ports with no Fanout ; 0 ; 280 ; 0 ;
  866. +---------------------------------------------+----------------------+---------------------+--------------------------------+
  867. +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  868. ; Input Pins ;
  869. +---------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+----------------+---------------+-----------------+----------+--------------+--------------+---------------------------+----------------------+
  870. ; 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 ;
  871. +---------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+----------------+---------------+-----------------+----------+--------------+--------------+---------------------------+----------------------+
  872. ; PIN_HSE ; AB17 ; 4 ; 76 ; 0 ; 0 ; 0 ; 0 ; no ; no ; no ; yes ; no ; Off ; 3.3-V LVTTL ; -- ; Fitter ;
  873. ; PIN_HSI ; Y2 ; 2 ; 0 ; 30 ; 14 ; 1 ; 0 ; no ; no ; no ; yes ; no ; Off ; 3.3-V LVTTL ; -- ; Fitter ;
  874. ; PLL_CLKIN ; J1 ; 1 ; 0 ; 30 ; 7 ; 1 ; 0 ; no ; no ; no ; yes ; no ; Off ; 3.3-V LVTTL ; -- ; Fitter ;
  875. ; UART0_UARTRXD ; AG12 ; 3 ; 47 ; 0 ; 7 ; 1 ; 0 ; no ; no ; no ; yes ; no ; Off ; 3.3-V LVTTL ; -- ; Fitter ;
  876. +---------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+----------------+---------------+-----------------+----------+--------------+--------------+---------------------------+----------------------+
  877. +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  878. ; Output Pins ;
  879. +---------------+-------+----------+--------------+--------------+--------------+-----------------+------------------------+---------------+-----------+-----------------+------------+---------------+----------+--------------+--------------+------------------+-------------+---------------------------+----------------------------+-----------------------------+----------------------+----------------------+---------------------+
  880. ; 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 ;
  881. +---------------+-------+----------+--------------+--------------+--------------+-----------------+------------------------+---------------+-----------+-----------------+------------+---------------+----------+--------------+--------------+------------------+-------------+---------------------------+----------------------------+-----------------------------+----------------------+----------------------+---------------------+
  882. ; SPI0_CSN ; AD12 ; 3 ; 45 ; 0 ; 7 ; no ; no ; no ; 2 ; yes ; no ; yes ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; no ; no ; Fitter ; - ; - ;
  883. ; SPI0_SCK ; AE13 ; 3 ; 43 ; 0 ; 7 ; no ; no ; no ; 2 ; yes ; no ; yes ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; no ; no ; Fitter ; - ; - ;
  884. ; UART0_UARTTXD ; AC15 ; 4 ; 51 ; 0 ; 21 ; no ; no ; no ; 2 ; yes ; no ; yes ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; no ; no ; Fitter ; - ; - ;
  885. +---------------+-------+----------+--------------+--------------+--------------+-----------------+------------------------+---------------+-----------+-----------------+------------+---------------+----------+--------------+--------------+------------------+-------------+---------------------------+----------------------------+-----------------------------+----------------------+----------------------+---------------------+
  886. +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  887. ; Bidir Pins ;
  888. +-------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+----------------+-----------------+------------------------+---------------+-----------+-----------------+------------+----------+--------------+--------------+------------------+--------------------+---------------------------+----------------------+------+-------------------------------+---------------------+
  889. ; 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 ;
  890. +-------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+----------------+-----------------+------------------------+---------------+-----------+-----------------+------------+----------+--------------+--------------+------------------+--------------------+---------------------------+----------------------+------+-------------------------------+---------------------+
  891. ; BAUD_RATE ; F10 ; 8 ; 16 ; 62 ; 7 ; 0 ; 0 ; no ; no ; no ; no ; no ; 2 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; Fitter ; 0 pF ; - ; - ;
  892. ; 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) ; - ;
  893. ; 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) ; - ;
  894. ; SPI0_SI_IO0 ; AA15 ; 4 ; 56 ; 0 ; 14 ; 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) ; - ;
  895. ; TEST_SINGLE ; H5 ; 1 ; 0 ; 47 ; 7 ; 0 ; 0 ; no ; no ; no ; no ; no ; 2 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; Fitter ; 0 pF ; - ; - ;
  896. ; UART1_RX ; AG26 ; 4 ; 92 ; 0 ; 7 ; 0 ; 0 ; no ; no ; no ; no ; no ; 2 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; Fitter ; 0 pF ; - ; - ;
  897. ; UART1_TX ; B3 ; 8 ; 5 ; 62 ; 0 ; 0 ; 0 ; no ; no ; no ; no ; no ; 2 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; Fitter ; 0 pF ; - ; - ;
  898. ; so_io1 ; AB16 ; 4 ; 56 ; 0 ; 21 ; 0 ; 0 ; no ; no ; no ; no ; no ; 2 ; yes ; no ; no ; Off ; 3.3-V LVTTL ; 8mA ; Off ; -- ; Fitter ; 0 pF ; - ; - ;
  899. +-------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+----------------+-----------------+------------------------+---------------+-----------+-----------------+------------+----------+--------------+--------------+------------------+--------------------+---------------------------+----------------------+------+-------------------------------+---------------------+
  900. +-------------------------------------------------------------------------------------------------------------------------+
  901. ; Dual Purpose and Dedicated Pins ;
  902. +----------+-----------------------------+--------------------------+-------------------------+---------------------------+
  903. ; Location ; Pin Name ; Reserved As ; User Signal Name ; Pin Type ;
  904. +----------+-----------------------------+--------------------------+-------------------------+---------------------------+
  905. ; F4 ; DIFFIO_L5n, DATA1, ASDO ; As input tri-stated ; ~ALTERA_ASDO_DATA1~ ; Dual Purpose Pin ;
  906. ; E2 ; DIFFIO_L8p, FLASH_nCE, nCSO ; As input tri-stated ; ~ALTERA_FLASH_nCE_nCSO~ ; Dual Purpose Pin ;
  907. ; M6 ; nSTATUS ; - ; - ; Dedicated Programming Pin ;
  908. ; P3 ; DCLK ; As output driving ground ; ~ALTERA_DCLK~ ; Dual Purpose Pin ;
  909. ; N7 ; DATA0 ; As input tri-stated ; ~ALTERA_DATA0~ ; Dual Purpose Pin ;
  910. ; P4 ; nCONFIG ; - ; - ; Dedicated Programming Pin ;
  911. ; R8 ; nCE ; - ; - ; Dedicated Programming Pin ;
  912. ; P24 ; CONF_DONE ; - ; - ; Dedicated Programming Pin ;
  913. ; N22 ; MSEL0 ; - ; - ; Dedicated Programming Pin ;
  914. ; P23 ; MSEL1 ; - ; - ; Dedicated Programming Pin ;
  915. ; M22 ; MSEL2 ; - ; - ; Dedicated Programming Pin ;
  916. ; P22 ; MSEL3 ; - ; - ; Dedicated Programming Pin ;
  917. ; P28 ; DIFFIO_R19n, nCEO ; Use as programming pin ; ~ALTERA_nCEO~ ; Dual Purpose Pin ;
  918. +----------+-----------------------------+--------------------------+-------------------------+---------------------------+
  919. +-----------------------------------------------------------+
  920. ; I/O Bank Usage ;
  921. +----------+-----------------+---------------+--------------+
  922. ; I/O Bank ; Usage ; VCCIO Voltage ; VREF Voltage ;
  923. +----------+-----------------+---------------+--------------+
  924. ; 1 ; 6 / 45 ( 13 % ) ; 3.3V ; -- ;
  925. ; 2 ; 1 / 49 ( 2 % ) ; 3.3V ; -- ;
  926. ; 3 ; 5 / 59 ( 8 % ) ; 3.3V ; -- ;
  927. ; 4 ; 5 / 58 ( 9 % ) ; 3.3V ; -- ;
  928. ; 5 ; 0 / 52 ( 0 % ) ; 3.3V ; -- ;
  929. ; 6 ; 1 / 48 ( 2 % ) ; 3.3V ; -- ;
  930. ; 7 ; 0 / 59 ( 0 % ) ; 3.3V ; -- ;
  931. ; 8 ; 2 / 57 ( 4 % ) ; 3.3V ; -- ;
  932. +----------+-----------------+---------------+--------------+
  933. +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  934. ; All Package Pins ;
  935. +----------+------------+----------+-----------------------------------------------------------+--------+--------------+---------+------------+-----------------+----------+--------------+
  936. ; Location ; Pad Number ; I/O Bank ; Pin Name/Usage ; Dir. ; I/O Standard ; Voltage ; I/O Type ; User Assignment ; Bus Hold ; Weak Pull Up ;
  937. +----------+------------+----------+-----------------------------------------------------------+--------+--------------+---------+------------+-----------------+----------+--------------+
  938. ; A2 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  939. ; A3 ; 435 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  940. ; A4 ; 432 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  941. ; A5 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  942. ; A6 ; 412 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  943. ; A7 ; 409 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  944. ; A8 ; 418 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  945. ; A9 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  946. ; A10 ; 399 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  947. ; A11 ; 397 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  948. ; A12 ; 392 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  949. ; A13 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  950. ; A14 ; 384 ; 8 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  951. ; A15 ; 382 ; 7 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  952. ; A16 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  953. ; A17 ; 377 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  954. ; A18 ; 365 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  955. ; A19 ; 363 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  956. ; A20 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  957. ; A21 ; 350 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  958. ; A22 ; 348 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  959. ; A23 ; 337 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  960. ; A24 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  961. ; A25 ; 330 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  962. ; A26 ; 329 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  963. ; A27 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  964. ; AA1 ; ; 2 ; VCCIO2 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  965. ; AA2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  966. ; AA3 ; 90 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  967. ; AA4 ; 89 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  968. ; AA5 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  969. ; AA6 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  970. ; AA7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  971. ; AA8 ; 129 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  972. ; AA9 ; ; ; GNDA1 ; gnd ; ; ; -- ; ; -- ; -- ;
  973. ; AA10 ; 130 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  974. ; AA11 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  975. ; AA12 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  976. ; AA13 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  977. ; AA14 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  978. ; AA15 ; 173 ; 4 ; SPI0_SI_IO0 ; bidir ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  979. ; AA16 ; 171 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  980. ; AA17 ; 201 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  981. ; AA18 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  982. ; AA19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  983. ; AA20 ; ; ; GNDA4 ; gnd ; ; ; -- ; ; -- ; -- ;
  984. ; AA21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  985. ; AA22 ; 223 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  986. ; AA23 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  987. ; AA24 ; 226 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  988. ; AA25 ; 240 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  989. ; AA26 ; 239 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  990. ; AA27 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  991. ; AA28 ; ; 5 ; VCCIO5 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  992. ; AB1 ; 74 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  993. ; AB2 ; 73 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  994. ; AB3 ; 87 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  995. ; AB4 ; 96 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  996. ; AB5 ; 102 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  997. ; AB6 ; 101 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  998. ; AB7 ; 127 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  999. ; AB8 ; 123 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1000. ; AB9 ; 122 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1001. ; AB10 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1002. ; AB11 ; 139 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1003. ; AB12 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1004. ; AB13 ; 154 ; 3 ; GPIO4_2 ; bidir ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1005. ; AB14 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1006. ; AB15 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1007. ; AB16 ; 172 ; 4 ; so_io1 ; bidir ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1008. ; AB17 ; 202 ; 4 ; PIN_HSE ; input ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1009. ; AB18 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1010. ; AB19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1011. ; AB20 ; 211 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1012. ; AB21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1013. ; AB22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1014. ; AB23 ; 224 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1015. ; AB24 ; 222 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1016. ; AB25 ; 238 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1017. ; AB26 ; 237 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1018. ; AB27 ; 242 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1019. ; AB28 ; 241 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1020. ; AC1 ; 82 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1021. ; AC2 ; 81 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1022. ; AC3 ; 83 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1023. ; AC4 ; 100 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1024. ; AC5 ; 99 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1025. ; AC6 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1026. ; AC7 ; 119 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1027. ; AC8 ; 128 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1028. ; AC9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1029. ; AC10 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1030. ; AC11 ; 148 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1031. ; AC12 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1032. ; AC13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1033. ; AC14 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1034. ; AC15 ; 164 ; 4 ; UART0_UARTTXD ; output ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1035. ; AC16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1036. ; AC17 ; 181 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1037. ; AC18 ; 200 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1038. ; AC19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1039. ; AC20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1040. ; AC21 ; 212 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1041. ; AC22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1042. ; AC23 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1043. ; AC24 ; 221 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1044. ; AC25 ; 220 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1045. ; AC26 ; 228 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1046. ; AC27 ; 236 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1047. ; AC28 ; 235 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1048. ; AD1 ; 86 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1049. ; AD2 ; 85 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1050. ; AD3 ; 84 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1051. ; AD4 ; 105 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1052. ; AD5 ; 103 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1053. ; AD6 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1054. ; AD7 ; 109 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1055. ; AD8 ; 118 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1056. ; AD9 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1057. ; AD10 ; 124 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1058. ; AD11 ; 149 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1059. ; AD12 ; 155 ; 3 ; SPI0_CSN ; output ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1060. ; AD13 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1061. ; AD14 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1062. ; AD15 ; 165 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1063. ; AD16 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1064. ; AD17 ; 182 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1065. ; AD18 ; 197 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1066. ; AD19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1067. ; AD20 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1068. ; AD21 ; 213 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1069. ; AD22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1070. ; AD23 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1071. ; AD24 ; 217 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1072. ; AD25 ; 209 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1073. ; AD26 ; 227 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1074. ; AD27 ; 232 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1075. ; AD28 ; 231 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1076. ; AE1 ; 94 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1077. ; AE2 ; 93 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1078. ; AE3 ; 97 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1079. ; AE4 ; 107 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1080. ; AE5 ; 110 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1081. ; AE6 ; 104 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1082. ; AE7 ; 133 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1083. ; AE8 ; 136 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1084. ; AE9 ; 138 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1085. ; AE10 ; 140 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1086. ; AE11 ; 146 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1087. ; AE12 ; 144 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1088. ; AE13 ; 152 ; 3 ; SPI0_SCK ; output ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1089. ; AE14 ; 156 ; 3 ; GPIO4_1 ; bidir ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1090. ; AE15 ; 166 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1091. ; AE16 ; 174 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1092. ; AE17 ; 175 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1093. ; AE18 ; 185 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1094. ; AE19 ; 191 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1095. ; AE20 ; 195 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1096. ; AE21 ; 198 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1097. ; AE22 ; 207 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1098. ; AE23 ; 215 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1099. ; AE24 ; 210 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1100. ; AE25 ; 203 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1101. ; AE26 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1102. ; AE27 ; 230 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1103. ; AE28 ; 229 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1104. ; AF1 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1105. ; AF2 ; 98 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1106. ; AF3 ; 113 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1107. ; AF4 ; 106 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1108. ; AF5 ; 111 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1109. ; AF6 ; 114 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1110. ; AF7 ; 134 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1111. ; AF8 ; 137 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1112. ; AF9 ; 135 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1113. ; AF10 ; 141 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1114. ; AF11 ; 147 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1115. ; AF12 ; 145 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1116. ; AF13 ; 153 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1117. ; AF14 ; 157 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1118. ; AF15 ; 167 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1119. ; AF16 ; 170 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1120. ; AF17 ; 176 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1121. ; AF18 ; 186 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1122. ; AF19 ; 192 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1123. ; AF20 ; 196 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1124. ; AF21 ; 199 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1125. ; AF22 ; 208 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1126. ; AF23 ; 216 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1127. ; AF24 ; 193 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1128. ; AF25 ; 194 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1129. ; AF26 ; 204 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1130. ; AF27 ; 225 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1131. ; AF28 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1132. ; AG1 ; ; 2 ; VCCIO2 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1133. ; AG2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1134. ; AG3 ; 108 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1135. ; AG4 ; 116 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1136. ; AG5 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1137. ; AG6 ; 120 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1138. ; AG7 ; 125 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1139. ; AG8 ; 131 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1140. ; AG9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1141. ; AG10 ; 142 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1142. ; AG11 ; 150 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1143. ; AG12 ; 158 ; 3 ; UART0_UARTRXD ; input ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1144. ; AG13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1145. ; AG14 ; 160 ; 3 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  1146. ; AG15 ; 162 ; 4 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  1147. ; AG16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1148. ; AG17 ; 168 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1149. ; AG18 ; 177 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1150. ; AG19 ; 179 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1151. ; AG20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1152. ; AG21 ; 183 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1153. ; AG22 ; 187 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1154. ; AG23 ; 189 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1155. ; AG24 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1156. ; AG25 ; 205 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1157. ; AG26 ; 218 ; 4 ; UART1_RX ; bidir ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1158. ; AG27 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1159. ; AG28 ; ; 5 ; VCCIO5 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1160. ; AH2 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1161. ; AH3 ; 112 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1162. ; AH4 ; 117 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1163. ; AH5 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1164. ; AH6 ; 121 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1165. ; AH7 ; 126 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1166. ; AH8 ; 132 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1167. ; AH9 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1168. ; AH10 ; 143 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1169. ; AH11 ; 151 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1170. ; AH12 ; 159 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1171. ; AH13 ; ; 3 ; VCCIO3 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1172. ; AH14 ; 161 ; 3 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  1173. ; AH15 ; 163 ; 4 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  1174. ; AH16 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1175. ; AH17 ; 169 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1176. ; AH18 ; 178 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1177. ; AH19 ; 180 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1178. ; AH20 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1179. ; AH21 ; 184 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1180. ; AH22 ; 188 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1181. ; AH23 ; 190 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1182. ; AH24 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1183. ; AH25 ; 206 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1184. ; AH26 ; 219 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1185. ; AH27 ; ; 4 ; VCCIO4 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1186. ; B1 ; ; 1 ; VCCIO1 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1187. ; B2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1188. ; B3 ; 434 ; 8 ; UART1_TX ; bidir ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1189. ; B4 ; 433 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1190. ; B5 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1191. ; B6 ; 413 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1192. ; B7 ; 410 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1193. ; B8 ; 419 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1194. ; B9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1195. ; B10 ; 400 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1196. ; B11 ; 398 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1197. ; B12 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1198. ; B13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1199. ; B14 ; 385 ; 8 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  1200. ; B15 ; 383 ; 7 ; GND+ ; ; ; ; Column I/O ; ; -- ; -- ;
  1201. ; B16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1202. ; B17 ; 378 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1203. ; B18 ; 366 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1204. ; B19 ; 364 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1205. ; B20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1206. ; B21 ; 351 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1207. ; B22 ; 349 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1208. ; B23 ; 338 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1209. ; B24 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1210. ; B25 ; 331 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1211. ; B26 ; 326 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1212. ; B27 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1213. ; B28 ; ; 6 ; VCCIO6 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1214. ; C1 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1215. ; C2 ; 1 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1216. ; C3 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1217. ; C4 ; 439 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1218. ; C5 ; 437 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1219. ; C6 ; 436 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1220. ; C7 ; 422 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1221. ; C8 ; 420 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1222. ; C9 ; 416 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1223. ; C10 ; 403 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1224. ; C11 ; 414 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1225. ; C12 ; 390 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1226. ; C13 ; 386 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1227. ; C14 ; 388 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1228. ; C15 ; 380 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1229. ; C16 ; 375 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1230. ; C17 ; 361 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1231. ; C18 ; 354 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1232. ; C19 ; 358 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1233. ; C20 ; 356 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1234. ; C21 ; 347 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1235. ; C22 ; 343 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1236. ; C23 ; 339 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1237. ; C24 ; 341 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1238. ; C25 ; 336 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1239. ; C26 ; 325 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1240. ; C27 ; 316 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1241. ; C28 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1242. ; D1 ; 3 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1243. ; D2 ; 2 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1244. ; D3 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1245. ; D4 ; 440 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1246. ; D5 ; 438 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1247. ; D6 ; 424 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1248. ; D7 ; 423 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1249. ; D8 ; 421 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1250. ; D9 ; 417 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1251. ; D10 ; 404 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1252. ; D11 ; 415 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1253. ; D12 ; 391 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1254. ; D13 ; 387 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1255. ; D14 ; 389 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1256. ; D15 ; 381 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1257. ; D16 ; 376 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1258. ; D17 ; 362 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1259. ; D18 ; 355 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1260. ; D19 ; 359 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1261. ; D20 ; 357 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1262. ; D21 ; 344 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1263. ; D22 ; 327 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1264. ; D23 ; 340 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1265. ; D24 ; 342 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1266. ; D25 ; 335 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1267. ; D26 ; 317 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1268. ; D27 ; 315 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1269. ; D28 ; 314 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1270. ; E1 ; 17 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1271. ; E2 ; 16 ; 1 ; ~ALTERA_FLASH_nCE_nCSO~ / RESERVED_INPUT_WITH_WEAK_PULLUP ; input ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; On ;
  1272. ; E3 ; 7 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1273. ; E4 ; 441 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1274. ; E5 ; 430 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1275. ; E6 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1276. ; E7 ; 431 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1277. ; E8 ; 428 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1278. ; E9 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1279. ; E10 ; 426 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1280. ; E11 ; 407 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1281. ; E12 ; 405 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1282. ; E13 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1283. ; E14 ; 396 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1284. ; E15 ; 379 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1285. ; E16 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1286. ; E17 ; 373 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1287. ; E18 ; 352 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1288. ; E19 ; 346 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1289. ; E20 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1290. ; E21 ; 332 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1291. ; E22 ; 328 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1292. ; E23 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1293. ; E24 ; 370 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1294. ; E25 ; 369 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1295. ; E26 ; 313 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1296. ; E27 ; 309 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1297. ; E28 ; 308 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1298. ; F1 ; 19 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1299. ; F2 ; 18 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1300. ; F3 ; 8 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1301. ; F4 ; 10 ; 1 ; ~ALTERA_ASDO_DATA1~ / RESERVED_INPUT_WITH_WEAK_PULLUP ; input ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; On ;
  1302. ; F5 ; 9 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1303. ; F6 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1304. ; F7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1305. ; F8 ; 429 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1306. ; F9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1307. ; F10 ; 427 ; 8 ; BAUD_RATE ; bidir ; 3.3-V LVTTL ; ; Column I/O ; N ; no ; Off ;
  1308. ; F11 ; 408 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1309. ; F12 ; 406 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1310. ; F13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1311. ; F14 ; 395 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1312. ; F15 ; 367 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1313. ; F16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1314. ; F17 ; 371 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1315. ; F18 ; 353 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1316. ; F19 ; 345 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1317. ; F20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1318. ; F21 ; 333 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1319. ; F22 ; 334 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1320. ; F23 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1321. ; F24 ; 324 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1322. ; F25 ; 323 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1323. ; F26 ; 311 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1324. ; F27 ; 307 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1325. ; F28 ; 306 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1326. ; G1 ; 26 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1327. ; G2 ; 25 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1328. ; G3 ; 13 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1329. ; G4 ; 12 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1330. ; G5 ; 6 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1331. ; G6 ; 5 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1332. ; G7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1333. ; G8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1334. ; G9 ; 425 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1335. ; G10 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1336. ; G11 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1337. ; G12 ; 411 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1338. ; G13 ; 401 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1339. ; G14 ; 394 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1340. ; G15 ; 374 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1341. ; G16 ; 368 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1342. ; G17 ; 360 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1343. ; G18 ; 372 ; 7 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1344. ; G19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1345. ; G20 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1346. ; G21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1347. ; G22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1348. ; G23 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1349. ; G24 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1350. ; G25 ; 321 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1351. ; G26 ; 320 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1352. ; G27 ; 301 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1353. ; G28 ; 300 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1354. ; H1 ; ; 1 ; VCCIO1 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1355. ; H2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1356. ; H3 ; 15 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1357. ; H4 ; 14 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1358. ; H5 ; 20 ; 1 ; TEST_SINGLE ; bidir ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; Off ;
  1359. ; H6 ; 11 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1360. ; H7 ; 4 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1361. ; H8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1362. ; H9 ; ; ; GNDA3 ; gnd ; ; ; -- ; ; -- ; -- ;
  1363. ; H10 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1364. ; H11 ; ; 8 ; VCCIO8 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1365. ; H12 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1366. ; H13 ; 402 ; 8 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1367. ; H14 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1368. ; H15 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1369. ; H16 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1370. ; H17 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1371. ; H18 ; ; 7 ; VCCIO7 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1372. ; H19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1373. ; H20 ; ; ; GNDA2 ; gnd ; ; ; -- ; ; -- ; -- ;
  1374. ; H21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1375. ; H22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1376. ; H23 ; 319 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1377. ; H24 ; 318 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1378. ; H25 ; 312 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1379. ; H26 ; 310 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1380. ; H27 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1381. ; H28 ; ; 6 ; VCCIO6 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1382. ; J1 ; 53 ; 1 ; PLL_CLKIN ; input ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; Off ;
  1383. ; J2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1384. ; J3 ; 23 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1385. ; J4 ; 22 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1386. ; J5 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1387. ; J6 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1388. ; J7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1389. ; J8 ; ; -- ; VCCA3 ; power ; ; 2.5V ; -- ; ; -- ; -- ;
  1390. ; J9 ; ; ; VCCD_PLL3 ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1391. ; J10 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1392. ; J11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1393. ; J12 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1394. ; J13 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1395. ; J14 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1396. ; J15 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1397. ; J16 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1398. ; J17 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1399. ; J18 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1400. ; J19 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1401. ; J20 ; ; ; VCCD_PLL2 ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1402. ; J21 ; ; -- ; VCCA2 ; power ; ; 2.5V ; -- ; ; -- ; -- ;
  1403. ; J22 ; 322 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1404. ; J23 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1405. ; J24 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1406. ; J25 ; 299 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1407. ; J26 ; 298 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1408. ; J27 ; 273 ; 6 ; GND+ ; ; ; ; Row I/O ; ; -- ; -- ;
  1409. ; J28 ; 272 ; 6 ; GND+ ; ; ; ; Row I/O ; ; -- ; -- ;
  1410. ; K1 ; 28 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1411. ; K2 ; 27 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1412. ; K3 ; 30 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1413. ; K4 ; 29 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1414. ; K5 ; ; 1 ; VCCIO1 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1415. ; K6 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1416. ; K7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1417. ; K8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1418. ; K9 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1419. ; K10 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1420. ; K11 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1421. ; K12 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1422. ; K13 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1423. ; K14 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1424. ; K15 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1425. ; K16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1426. ; K17 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1427. ; K18 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1428. ; K19 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1429. ; K20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1430. ; K21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1431. ; K22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1432. ; K23 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1433. ; K24 ; ; 6 ; VCCIO6 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1434. ; K25 ; 305 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1435. ; K26 ; 304 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1436. ; K27 ; 296 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1437. ; K28 ; 295 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1438. ; L1 ; 38 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1439. ; L2 ; 37 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1440. ; L3 ; 32 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1441. ; L4 ; 31 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1442. ; L5 ; 21 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1443. ; L6 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1444. ; L7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1445. ; L8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1446. ; L9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1447. ; L10 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1448. ; L11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1449. ; L12 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1450. ; L13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1451. ; L14 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1452. ; L15 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1453. ; L16 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1454. ; L17 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1455. ; L18 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1456. ; L19 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1457. ; L20 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1458. ; L21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1459. ; L22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1460. ; L23 ; 294 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1461. ; L24 ; 293 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1462. ; L25 ; 303 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1463. ; L26 ; 297 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1464. ; L27 ; 292 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1465. ; L28 ; 291 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1466. ; M1 ; 40 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1467. ; M2 ; 39 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1468. ; M3 ; 34 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1469. ; M4 ; 33 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1470. ; M5 ; 36 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1471. ; M6 ; 24 ; 1 ; ^nSTATUS ; ; ; ; -- ; ; -- ; -- ;
  1472. ; M7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1473. ; M8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1474. ; M9 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1475. ; M10 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1476. ; M11 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1477. ; M12 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1478. ; M13 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1479. ; M14 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1480. ; M15 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1481. ; M16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1482. ; M17 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1483. ; M18 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1484. ; M19 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1485. ; M20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1486. ; M21 ; 302 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1487. ; M22 ; 277 ; 6 ; ^MSEL2 ; ; ; ; -- ; ; -- ; -- ;
  1488. ; M23 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1489. ; M24 ; 281 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1490. ; M25 ; 290 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1491. ; M26 ; 289 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1492. ; M27 ; 288 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1493. ; M28 ; 287 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1494. ; N1 ; ; 1 ; VCCIO1 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1495. ; N2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1496. ; N3 ; 43 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1497. ; N4 ; 35 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1498. ; N5 ; ; 1 ; VCCIO1 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1499. ; N6 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1500. ; N7 ; 45 ; 1 ; ~ALTERA_DATA0~ / RESERVED_INPUT_WITH_WEAK_PULLUP ; input ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; On ;
  1501. ; N8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1502. ; N9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1503. ; N10 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1504. ; N11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1505. ; N12 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1506. ; N13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1507. ; N14 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1508. ; N15 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1509. ; N16 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1510. ; N17 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1511. ; N18 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1512. ; N19 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1513. ; N20 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1514. ; N21 ; 282 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1515. ; N22 ; 275 ; 6 ; ^MSEL0 ; ; ; ; -- ; ; -- ; -- ;
  1516. ; N23 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1517. ; N24 ; ; 6 ; VCCIO6 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1518. ; N25 ; 286 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1519. ; N26 ; 285 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1520. ; N27 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1521. ; N28 ; ; 6 ; VCCIO6 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1522. ; P1 ; 42 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1523. ; P2 ; 41 ; 1 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1524. ; P3 ; 44 ; 1 ; ~ALTERA_DCLK~ ; output ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; On ;
  1525. ; P4 ; 46 ; 1 ; ^nCONFIG ; ; ; ; -- ; ; -- ; -- ;
  1526. ; P5 ; 48 ; 1 ; #TCK ; input ; ; ; -- ; ; -- ; -- ;
  1527. ; P6 ; 50 ; 1 ; #TDO ; output ; ; ; -- ; ; -- ; -- ;
  1528. ; P7 ; 47 ; 1 ; #TDI ; input ; ; ; -- ; ; -- ; -- ;
  1529. ; P8 ; 49 ; 1 ; #TMS ; input ; ; ; -- ; ; -- ; -- ;
  1530. ; P9 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1531. ; P10 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1532. ; P11 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1533. ; P12 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1534. ; P13 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1535. ; P14 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1536. ; P15 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1537. ; P16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1538. ; P17 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1539. ; P18 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1540. ; P19 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1541. ; P20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1542. ; P21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1543. ; P22 ; 278 ; 6 ; ^MSEL3 ; ; ; ; -- ; ; -- ; -- ;
  1544. ; P23 ; 276 ; 6 ; ^MSEL1 ; ; ; ; -- ; ; -- ; -- ;
  1545. ; P24 ; 274 ; 6 ; ^CONF_DONE ; ; ; ; -- ; ; -- ; -- ;
  1546. ; P25 ; 280 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1547. ; P26 ; 279 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1548. ; P27 ; 284 ; 6 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1549. ; P28 ; 283 ; 6 ; ~ALTERA_nCEO~ / RESERVED_OUTPUT_OPEN_DRAIN ; output ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; Off ;
  1550. ; R1 ; 57 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1551. ; R2 ; 56 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1552. ; R3 ; 61 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1553. ; R4 ; 62 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1554. ; R5 ; 65 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1555. ; R6 ; 58 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1556. ; R7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1557. ; R8 ; 51 ; 1 ; ^nCE ; ; ; ; -- ; ; -- ; -- ;
  1558. ; R9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1559. ; R10 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1560. ; R11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1561. ; R12 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1562. ; R13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1563. ; R14 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1564. ; R15 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1565. ; R16 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1566. ; R17 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1567. ; R18 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1568. ; R19 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1569. ; R20 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1570. ; R21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1571. ; R22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1572. ; R23 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1573. ; R24 ; 269 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1574. ; R25 ; 266 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1575. ; R26 ; 265 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1576. ; R27 ; 268 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1577. ; R28 ; 267 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1578. ; T1 ; ; 2 ; VCCIO2 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1579. ; T2 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1580. ; T3 ; 64 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1581. ; T4 ; 63 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1582. ; T5 ; ; 2 ; VCCIO2 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1583. ; T6 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1584. ; T7 ; 66 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1585. ; T8 ; 88 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1586. ; T9 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1587. ; T10 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1588. ; T11 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1589. ; T12 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1590. ; T13 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1591. ; T14 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1592. ; T15 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1593. ; T16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1594. ; T17 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1595. ; T18 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1596. ; T19 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1597. ; T20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1598. ; T21 ; 264 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1599. ; T22 ; 263 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1600. ; T23 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1601. ; T24 ; ; 5 ; VCCIO5 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1602. ; T25 ; 262 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1603. ; T26 ; 257 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1604. ; T27 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1605. ; T28 ; ; 5 ; VCCIO5 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1606. ; U1 ; 68 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1607. ; U2 ; 67 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1608. ; U3 ; 59 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1609. ; U4 ; 60 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1610. ; U5 ; 78 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1611. ; U6 ; 77 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1612. ; U7 ; 91 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1613. ; U8 ; 92 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1614. ; U9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1615. ; U10 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1616. ; U11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1617. ; U12 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1618. ; U13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1619. ; U14 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1620. ; U15 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1621. ; U16 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1622. ; U17 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1623. ; U18 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1624. ; U19 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1625. ; U20 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1626. ; U21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1627. ; U22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1628. ; U23 ; 251 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1629. ; U24 ; 260 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; -- ; -- ;
  1630. ; U25 ; 259 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1631. ; U26 ; 258 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1632. ; U27 ; 256 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1633. ; U28 ; 261 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1634. ; V1 ; 72 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1635. ; V2 ; 71 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1636. ; V3 ; 70 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1637. ; V4 ; 69 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1638. ; V5 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1639. ; V6 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1640. ; V7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1641. ; V8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1642. ; V9 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1643. ; V10 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1644. ; V11 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1645. ; V12 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1646. ; V13 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1647. ; V14 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1648. ; V15 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1649. ; V16 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1650. ; V17 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1651. ; V18 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1652. ; V19 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1653. ; V20 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1654. ; V21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1655. ; V22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1656. ; V23 ; 255 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1657. ; V24 ; 254 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1658. ; V25 ; 253 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1659. ; V26 ; 252 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1660. ; V27 ; 250 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1661. ; V28 ; 249 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1662. ; W1 ; 76 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1663. ; W2 ; 75 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1664. ; W3 ; 95 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1665. ; W4 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1666. ; W5 ; ; 2 ; VCCIO2 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1667. ; W6 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1668. ; W7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1669. ; W8 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1670. ; W9 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1671. ; W10 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1672. ; W11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1673. ; W12 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1674. ; W13 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1675. ; W14 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1676. ; W15 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1677. ; W16 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1678. ; W17 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1679. ; W18 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1680. ; W19 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1681. ; W20 ; ; ; VCCINT ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1682. ; W21 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1683. ; W22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1684. ; W23 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1685. ; W24 ; ; 5 ; VCCIO5 ; power ; ; 3.3V ; -- ; ; -- ; -- ;
  1686. ; W25 ; 246 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1687. ; W26 ; 245 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1688. ; W27 ; 247 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1689. ; W28 ; 248 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1690. ; Y1 ; 55 ; 2 ; GND+ ; ; ; ; Row I/O ; ; -- ; -- ;
  1691. ; Y2 ; 54 ; 2 ; PIN_HSI ; input ; 3.3-V LVTTL ; ; Row I/O ; N ; no ; Off ;
  1692. ; Y3 ; 80 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1693. ; Y4 ; 79 ; 2 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1694. ; Y5 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1695. ; Y6 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1696. ; Y7 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1697. ; Y8 ; ; -- ; VCCA1 ; power ; ; 2.5V ; -- ; ; -- ; -- ;
  1698. ; Y9 ; ; ; VCCD_PLL1 ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1699. ; Y10 ; 115 ; 3 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; -- ; -- ;
  1700. ; Y11 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1701. ; Y12 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1702. ; Y13 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1703. ; Y14 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1704. ; Y15 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1705. ; Y16 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1706. ; Y17 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1707. ; Y18 ; ; ; GND ; gnd ; ; ; -- ; ; -- ; -- ;
  1708. ; Y19 ; 214 ; 4 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Column I/O ; ; no ; On ;
  1709. ; Y20 ; ; ; VCCD_PLL4 ; power ; ; 1.2V ; -- ; ; -- ; -- ;
  1710. ; Y21 ; ; -- ; VCCA4 ; power ; ; 2.5V ; -- ; ; -- ; -- ;
  1711. ; Y22 ; ; ; NC ; ; ; ; -- ; ; -- ; -- ;
  1712. ; Y23 ; 234 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1713. ; Y24 ; 233 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1714. ; Y25 ; 244 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1715. ; Y26 ; 243 ; 5 ; RESERVED_INPUT_WITH_WEAK_PULLUP ; ; ; ; Row I/O ; ; no ; On ;
  1716. ; Y27 ; 271 ; 5 ; GND+ ; ; ; ; Row I/O ; ; -- ; -- ;
  1717. ; Y28 ; 270 ; 5 ; GND+ ; ; ; ; Row I/O ; ; -- ; -- ;
  1718. +----------+------------+----------+-----------------------------------------------------------+--------+--------------+---------+------------+-----------------+----------+--------------+
  1719. Note: Pin directions (input, output or bidir) are based on device operating in user mode.
  1720. +---------------------------------------------------------------------------------+
  1721. ; PLL Summary ;
  1722. +-------------------------------+-------------------------------------------------+
  1723. ; Name ; altpll:pll_inst|altpll_6o32:auto_generated|pll1 ;
  1724. +-------------------------------+-------------------------------------------------+
  1725. ; SDC pin name ; pll_inst|auto_generated|pll1 ;
  1726. ; PLL mode ; Normal ;
  1727. ; Compensate clock ; clock0 ;
  1728. ; Compensated input/output pins ; -- ;
  1729. ; Switchover type ; -- ;
  1730. ; Input frequency 0 ; 8.0 MHz ;
  1731. ; Input frequency 1 ; -- ;
  1732. ; Nominal PFD frequency ; 8.0 MHz ;
  1733. ; Nominal VCO frequency ; 312.0 MHz ;
  1734. ; VCO post scale K counter ; 2 ;
  1735. ; VCO frequency control ; Auto ;
  1736. ; VCO phase shift step ; 400 ps ;
  1737. ; VCO multiply ; -- ;
  1738. ; VCO divide ; -- ;
  1739. ; Freq min lock ; 7.69 MHz ;
  1740. ; Freq max lock ; 16.67 MHz ;
  1741. ; M VCO Tap ; 0 ;
  1742. ; M Initial ; 1 ;
  1743. ; M value ; 39 ;
  1744. ; N value ; 1 ;
  1745. ; Charge pump current ; setting 1 ;
  1746. ; Loop filter resistance ; setting 20 ;
  1747. ; Loop filter capacitance ; setting 0 ;
  1748. ; Bandwidth ; 450 kHz to 590 kHz ;
  1749. ; Bandwidth type ; Medium ;
  1750. ; Real time reconfigurable ; Off ;
  1751. ; Scan chain MIF file ; -- ;
  1752. ; Preserve PLL counter order ; Off ;
  1753. ; PLL location ; PLL_1 ;
  1754. ; Inclk0 signal ; PLL_CLKIN ;
  1755. ; Inclk1 signal ; -- ;
  1756. ; Inclk0 signal type ; Dedicated Pin ;
  1757. ; Inclk1 signal type ; -- ;
  1758. +-------------------------------+-------------------------------------------------+
  1759. +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1760. ; PLL Usage ;
  1761. +---------------------------------------------------+--------------+------+-----+------------------+-------------+------------------+------------+---------+---------------+------------+---------------+---------+---------+-------------------------------------+
  1762. ; 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 ;
  1763. +---------------------------------------------------+--------------+------+-----+------------------+-------------+------------------+------------+---------+---------------+------------+---------------+---------+---------+-------------------------------------+
  1764. ; 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] ;
  1765. +---------------------------------------------------+--------------+------+-----+------------------+-------------+------------------+------------+---------+---------------+------------+---------------+---------+---------+-------------------------------------+
  1766. +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1767. ; Fitter Resource Utilization by Entity ;
  1768. +------------------------------------+-------------+---------------------------+---------------+-------------+------+--------------+---------+-----------+------+--------------+--------------+-------------------+------------------+-------------------------------------------------------+--------------+
  1769. ; 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 ;
  1770. +------------------------------------+-------------+---------------------------+---------------+-------------+------+--------------+---------+-----------+------+--------------+--------------+-------------------+------------------+-------------------------------------------------------+--------------+
  1771. ; |fpga_boot ; 44 (42) ; 1 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 15 ; 1 ; 43 (42) ; 0 (0) ; 1 (0) ; |fpga_boot ; ;
  1772. ; |alta_gclksw:gclksw_inst| ; 0 (0) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 (0) ; 0 (0) ; 0 (0) ; |fpga_boot|alta_gclksw:gclksw_inst ; ;
  1773. ; |alta_rv32:rv32| ; 1 (1) ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 1 ; 1 (1) ; 0 (0) ; 0 (0) ; |fpga_boot|alta_rv32:rv32 ; ;
  1774. ; |altpll:pll_inst| ; 1 (0) ; 1 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 (0) ; 0 (0) ; 1 (0) ; |fpga_boot|altpll:pll_inst ; ;
  1775. ; |altpll_6o32:auto_generated| ; 1 (1) ; 1 (1) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 ; 0 (0) ; 0 (0) ; 1 (1) ; |fpga_boot|altpll:pll_inst|altpll_6o32:auto_generated ; ;
  1776. +------------------------------------+-------------+---------------------------+---------------+-------------+------+--------------+---------+-----------+------+--------------+--------------+-------------------+------------------+-------------------------------------------------------+--------------+
  1777. 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.
  1778. +-----------------------------------------------------------------------------------------------+
  1779. ; Delay Chain Summary ;
  1780. +---------------+----------+---------------+---------------+-----------------------+-----+------+
  1781. ; Name ; Pin Type ; Pad to Core 0 ; Pad to Core 1 ; Pad to Input Register ; TCO ; TCOE ;
  1782. +---------------+----------+---------------+---------------+-----------------------+-----+------+
  1783. ; PIN_HSE ; Input ; -- ; -- ; -- ; -- ; -- ;
  1784. ; SPI0_CSN ; Output ; -- ; -- ; -- ; -- ; -- ;
  1785. ; SPI0_SCK ; Output ; -- ; -- ; -- ; -- ; -- ;
  1786. ; UART0_UARTTXD ; Output ; -- ; -- ; -- ; -- ; -- ;
  1787. ; BAUD_RATE ; Bidir ; -- ; -- ; -- ; -- ; -- ;
  1788. ; GPIO4_1 ; Bidir ; (6) 1314 ps ; -- ; -- ; -- ; -- ;
  1789. ; GPIO4_2 ; Bidir ; (6) 1314 ps ; -- ; -- ; -- ; -- ;
  1790. ; SPI0_SI_IO0 ; Bidir ; (6) 1314 ps ; -- ; -- ; -- ; -- ;
  1791. ; TEST_SINGLE ; Bidir ; -- ; -- ; -- ; -- ; -- ;
  1792. ; UART1_RX ; Bidir ; -- ; -- ; -- ; -- ; -- ;
  1793. ; UART1_TX ; Bidir ; -- ; -- ; -- ; -- ; -- ;
  1794. ; so_io1 ; Bidir ; -- ; -- ; -- ; -- ; -- ;
  1795. ; UART0_UARTRXD ; Input ; (6) 1314 ps ; -- ; -- ; -- ; -- ;
  1796. ; PIN_HSI ; Input ; (0) 0 ps ; -- ; -- ; -- ; -- ;
  1797. ; PLL_CLKIN ; Input ; -- ; -- ; -- ; -- ; -- ;
  1798. +---------------+----------+---------------+---------------+-----------------------+-----+------+
  1799. +-----------------------------------------------------+
  1800. ; Pad To Core Delay Chain Fanout ;
  1801. +-----------------------+-------------------+---------+
  1802. ; Source Pin / Fanout ; Pad To Core Index ; Setting ;
  1803. +-----------------------+-------------------+---------+
  1804. ; PIN_HSE ; ; ;
  1805. ; BAUD_RATE ; ; ;
  1806. ; GPIO4_1 ; ; ;
  1807. ; - gpio4_io_in[1] ; 0 ; 6 ;
  1808. ; GPIO4_2 ; ; ;
  1809. ; - gpio4_io_in[2] ; 0 ; 6 ;
  1810. ; SPI0_SI_IO0 ; ; ;
  1811. ; - gpio0_io_in[0] ; 0 ; 6 ;
  1812. ; TEST_SINGLE ; ; ;
  1813. ; UART1_RX ; ; ;
  1814. ; UART1_TX ; ; ;
  1815. ; so_io1 ; ; ;
  1816. ; UART0_UARTRXD ; ; ;
  1817. ; - gpio6_io_in[1] ; 0 ; 6 ;
  1818. ; PIN_HSI ; ; ;
  1819. ; PLL_CLKIN ; ; ;
  1820. +-----------------------+-------------------+---------+
  1821. +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1822. ; Control Signals ;
  1823. +--------------------------------------------------------+-------------------+---------+---------------+--------+----------------------+------------------+---------------------------+---------------+---------------+---------------+---------------+----------------+----------------+
  1824. ; 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 ;
  1825. +--------------------------------------------------------+-------------------+---------+---------------+--------+----------------------+------------------+---------------------------+---------------+---------------+---------------+---------------+----------------+----------------+
  1826. ; PIN_HSI ; PIN_Y2 ; 1 ; Clock ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1827. ; PLL_CLKIN ; PIN_J1 ; 1 ; Clock ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1828. ; PLL_ENABLE ; LCCOMB_X49_Y1_N28 ; 2 ; Async. clear ; yes ; Global Clock ; GCLK15 ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1829. ; altpll:pll_inst|altpll_6o32:auto_generated|clk[0] ; PLL_1 ; 1 ; Clock ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1830. ; altpll:pll_inst|altpll_6o32:auto_generated|pll1~LOCKED ; PLL_1 ; 2 ; Clock ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1831. ; gpio0_io_out_en[0] ; LCCOMB_X57_Y7_N28 ; 1 ; Output enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1832. ; gpio4_io_out_en[1] ; LCCOMB_X45_Y4_N28 ; 1 ; Output enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1833. ; gpio4_io_out_en[2] ; LCCOMB_X45_Y4_N30 ; 1 ; Output enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1834. ; gpio4_io_out_en[5] ; LCCOMB_X45_Y3_N4 ; 1 ; Output enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1835. ; gpio4_io_out_en[6] ; LCCOMB_X45_Y3_N6 ; 1 ; Output enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1836. ; gpio7_io_out_en[6] ; LCCOMB_X50_Y4_N20 ; 1 ; Output enable ; no ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1837. +--------------------------------------------------------+-------------------+---------+---------------+--------+----------------------+------------------+---------------------------+---------------+---------------+---------------+---------------+----------------+----------------+
  1838. +-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1839. ; Global & Other Fast Signals ;
  1840. +--------------------------------+-------------------+---------+--------------------------------------+----------------------+------------------+---------------------------+---------------+---------------+---------------------------------------------------+---------------+-----------------------+-----------------------+
  1841. ; 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 ;
  1842. +--------------------------------+-------------------+---------+--------------------------------------+----------------------+------------------+---------------------------+---------------+---------------+---------------------------------------------------+---------------+-----------------------+-----------------------+
  1843. ; PLL_ENABLE ; LCCOMB_X49_Y1_N28 ; 2 ; 0 ; Global Clock ; GCLK15 ; -- ; -- ; -- ; -- ; -- ; -- ; -- ;
  1844. ; alta_gclksw:gclksw_inst|clkout ; CLKCTRL_G3 ; 1 ; 0 ; Global Clock ; GCLK3 ; VCC ; PIN_HSI ; -- ; altpll:pll_inst|altpll_6o32:auto_generated|clk[0] ; -- ; sys_ctrl_clkSource[0] ; sys_ctrl_clkSource[1] ;
  1845. +--------------------------------+-------------------+---------+--------------------------------------+----------------------+------------------+---------------------------+---------------+---------------+---------------------------------------------------+---------------+-----------------------+-----------------------+
  1846. +---------------------------------------------------------------------------+
  1847. ; Non-Global High Fan-Out Signals ;
  1848. +-----------------------------------------------------------------+---------+
  1849. ; Name ; Fan-Out ;
  1850. +-----------------------------------------------------------------+---------+
  1851. ; alta_rv32:rv32|~GND ; 12 ;
  1852. ; PLL_LOCK ; 2 ;
  1853. ; altpll:pll_inst|altpll_6o32:auto_generated|pll1~LOCKED ; 2 ;
  1854. ; altpll:pll_inst|altpll_6o32:auto_generated|pll_lock_sync~feeder ; 1 ;
  1855. ; PLL_CLKIN~input ; 1 ;
  1856. ; PIN_HSI~input ; 1 ;
  1857. ; UART0_UARTRXD~input ; 1 ;
  1858. ; SPI0_SI_IO0~input ; 1 ;
  1859. ; GPIO4_2~input ; 1 ;
  1860. ; GPIO4_1~input ; 1 ;
  1861. ; ~VCC ; 1 ;
  1862. ; gpio0_io_out_en[0] ; 1 ;
  1863. ; gpio0_io_out_data[0] ; 1 ;
  1864. ; gpio4_io_out_en[2] ; 1 ;
  1865. ; gpio4_io_out_data[2] ; 1 ;
  1866. ; gpio4_io_out_en[1] ; 1 ;
  1867. ; gpio4_io_out_data[1] ; 1 ;
  1868. ; sys_ctrl_clkSource[1] ; 1 ;
  1869. ; sys_ctrl_clkSource[0] ; 1 ;
  1870. ; gpio7_io_out_en[6] ; 1 ;
  1871. ; gpio7_io_out_data[6] ; 1 ;
  1872. ; gpio4_io_out_en[5] ; 1 ;
  1873. ; gpio4_io_out_data[5] ; 1 ;
  1874. ; gpio4_io_out_en[6] ; 1 ;
  1875. ; gpio4_io_out_data[6] ; 1 ;
  1876. ; altpll:pll_inst|altpll_6o32:auto_generated|pll_lock_sync ; 1 ;
  1877. ; altpll:pll_inst|altpll_6o32:auto_generated|clk[0] ; 1 ;
  1878. ; altpll:pll_inst|altpll_6o32:auto_generated|pll1~FBOUT ; 1 ;
  1879. +-----------------------------------------------------------------+---------+
  1880. +------------------------------------------------------+
  1881. ; Other Routing Usage Summary ;
  1882. +-----------------------------+------------------------+
  1883. ; Other Routing Resource Type ; Usage ;
  1884. +-----------------------------+------------------------+
  1885. ; Block interconnects ; 28 / 238,469 ( < 1 % ) ;
  1886. ; C16 interconnects ; 2 / 7,238 ( < 1 % ) ;
  1887. ; C4 interconnects ; 38 / 146,424 ( < 1 % ) ;
  1888. ; Global clocks ; 2 / 20 ( 10 % ) ;
  1889. ; Local interconnects ; 4 / 81,264 ( < 1 % ) ;
  1890. ; R24 interconnects ; 6 / 7,153 ( < 1 % ) ;
  1891. ; R4 interconnects ; 23 / 201,722 ( < 1 % ) ;
  1892. +-----------------------------+------------------------+
  1893. +---------------------------------------------------------------------------+
  1894. ; LAB Logic Elements ;
  1895. +--------------------------------------------+------------------------------+
  1896. ; Number of Logic Elements (Average = 3.75) ; Number of LABs (Total = 12) ;
  1897. +--------------------------------------------+------------------------------+
  1898. ; 1 ; 4 ;
  1899. ; 2 ; 2 ;
  1900. ; 3 ; 3 ;
  1901. ; 4 ; 0 ;
  1902. ; 5 ; 0 ;
  1903. ; 6 ; 0 ;
  1904. ; 7 ; 0 ;
  1905. ; 8 ; 2 ;
  1906. ; 9 ; 0 ;
  1907. ; 10 ; 0 ;
  1908. ; 11 ; 0 ;
  1909. ; 12 ; 1 ;
  1910. ; 13 ; 0 ;
  1911. ; 14 ; 0 ;
  1912. ; 15 ; 0 ;
  1913. ; 16 ; 0 ;
  1914. +--------------------------------------------+------------------------------+
  1915. +-------------------------------------------------------------------+
  1916. ; LAB-wide Signals ;
  1917. +------------------------------------+------------------------------+
  1918. ; LAB-wide Signals (Average = 0.08) ; Number of LABs (Total = 12) ;
  1919. +------------------------------------+------------------------------+
  1920. ; 1 Async. clear ; 1 ;
  1921. +------------------------------------+------------------------------+
  1922. +----------------------------------------------------------------------------+
  1923. ; LAB Signals Sourced ;
  1924. +---------------------------------------------+------------------------------+
  1925. ; Number of Signals Sourced (Average = 1.67) ; Number of LABs (Total = 12) ;
  1926. +---------------------------------------------+------------------------------+
  1927. ; 0 ; 4 ;
  1928. ; 1 ; 2 ;
  1929. ; 2 ; 2 ;
  1930. ; 3 ; 2 ;
  1931. ; 4 ; 2 ;
  1932. +---------------------------------------------+------------------------------+
  1933. +--------------------------------------------------------------------------------+
  1934. ; LAB Signals Sourced Out ;
  1935. +-------------------------------------------------+------------------------------+
  1936. ; Number of Signals Sourced Out (Average = 1.42) ; Number of LABs (Total = 12) ;
  1937. +-------------------------------------------------+------------------------------+
  1938. ; 0 ; 4 ;
  1939. ; 1 ; 2 ;
  1940. ; 2 ; 4 ;
  1941. ; 3 ; 1 ;
  1942. ; 4 ; 1 ;
  1943. +-------------------------------------------------+------------------------------+
  1944. +----------------------------------------------------------------------------+
  1945. ; LAB Distinct Inputs ;
  1946. +---------------------------------------------+------------------------------+
  1947. ; Number of Distinct Inputs (Average = 1.08) ; Number of LABs (Total = 12) ;
  1948. +---------------------------------------------+------------------------------+
  1949. ; 0 ; 0 ;
  1950. ; 1 ; 8 ;
  1951. ; 2 ; 1 ;
  1952. ; 3 ; 1 ;
  1953. +---------------------------------------------+------------------------------+
  1954. +------------------------------------------+
  1955. ; I/O Rules Summary ;
  1956. +----------------------------------+-------+
  1957. ; I/O Rules Statistic ; Total ;
  1958. +----------------------------------+-------+
  1959. ; Total I/O Rules ; 30 ;
  1960. ; Number of I/O Rules Passed ; 7 ;
  1961. ; Number of I/O Rules Failed ; 0 ;
  1962. ; Number of I/O Rules Unchecked ; 0 ;
  1963. ; Number of I/O Rules Inapplicable ; 23 ;
  1964. +----------------------------------+-------+
  1965. +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1966. ; I/O Rules Details ;
  1967. +--------------+-----------+-----------------------------------+------------------------------------------------------------------------------------------------------+----------+--------------------------------------------------------------------------+------+-------------------+
  1968. ; Status ; ID ; Category ; Rule Description ; Severity ; Information ; Area ; Extra Information ;
  1969. +--------------+-----------+-----------------------------------+------------------------------------------------------------------------------------------------------+----------+--------------------------------------------------------------------------+------+-------------------+
  1970. ; 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 ; ;
  1971. ; 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 ; ;
  1972. ; 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 ; ;
  1973. ; Inapplicable ; IO_000004 ; Voltage Compatibility Checks ; The I/O bank should support the requested VCCIO. ; Critical ; No IOBANK_VCCIO assignments found. ; I/O ; ;
  1974. ; 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 ; ;
  1975. ; Pass ; IO_000006 ; Voltage Compatibility Checks ; The I/O bank should not have competing VCCIO values. ; Critical ; 0 such failures found. ; I/O ; ;
  1976. ; Inapplicable ; IO_000007 ; Valid Location Checks ; Checks for unavailable locations. ; Critical ; No Location assignments found. ; I/O ; ;
  1977. ; Pass ; IO_000008 ; Valid Location Checks ; Checks for reserved locations. ; Critical ; 0 such failures found. ; I/O ; ;
  1978. ; 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 ; ;
  1979. ; 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 ; ;
  1980. ; 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 ; ;
  1981. ; 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 ; ;
  1982. ; 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 ; ;
  1983. ; 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 ; ;
  1984. ; 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 ; ;
  1985. ; 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 ; ;
  1986. ; 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 ; ;
  1987. ; 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 ; ;
  1988. ; 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 ; ;
  1989. ; 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 ; ;
  1990. ; 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 ; ;
  1991. ; 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 ; ;
  1992. ; 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 ; ;
  1993. ; 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 ; ;
  1994. ; 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 ; ;
  1995. ; 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 ; ;
  1996. ; 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 ; ;
  1997. ; 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 ; ;
  1998. ; 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 ; ;
  1999. ; 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 ; ;
  2000. +--------------+-----------+-----------------------------------+------------------------------------------------------------------------------------------------------+----------+--------------------------------------------------------------------------+------+-------------------+
  2001. +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  2002. ; I/O Rules Matrix ;
  2003. +--------------------+--------------+--------------+--------------+--------------+--------------+-----------+--------------+-----------+-----------+-----------+--------------+--------------+--------------+--------------+-----------+--------------+--------------+-----------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+-----------+--------------+--------------+
  2004. ; 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 ;
  2005. +--------------------+--------------+--------------+--------------+--------------+--------------+-----------+--------------+-----------+-----------+-----------+--------------+--------------+--------------+--------------+-----------+--------------+--------------+-----------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+-----------+--------------+--------------+
  2006. ; 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 ;
  2007. ; 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 ;
  2008. ; 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 ;
  2009. ; 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 ;
  2010. ; 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 ;
  2011. ; 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 ;
  2012. ; 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 ;
  2013. ; 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 ;
  2014. ; 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 ;
  2015. ; 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 ;
  2016. ; 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 ;
  2017. ; 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 ;
  2018. ; 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 ;
  2019. ; 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 ;
  2020. ; 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 ;
  2021. ; 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 ;
  2022. ; 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 ;
  2023. ; 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 ;
  2024. ; 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 ;
  2025. +--------------------+--------------+--------------+--------------+--------------+--------------+-----------+--------------+-----------+-----------+-----------+--------------+--------------+--------------+--------------+-----------+--------------+--------------+-----------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+-----------+--------------+--------------+
  2026. +---------------------------------------------------------------------------------------------+
  2027. ; Fitter Device Options ;
  2028. +------------------------------------------------------------------+--------------------------+
  2029. ; Option ; Setting ;
  2030. +------------------------------------------------------------------+--------------------------+
  2031. ; Enable user-supplied start-up clock (CLKUSR) ; Off ;
  2032. ; Enable device-wide reset (DEV_CLRn) ; Off ;
  2033. ; Enable device-wide output enable (DEV_OE) ; Off ;
  2034. ; Enable INIT_DONE output ; Off ;
  2035. ; Configuration scheme ; Active Serial ;
  2036. ; Error detection CRC ; Off ;
  2037. ; Enable open drain on CRC_ERROR pin ; Off ;
  2038. ; Enable input tri-state on active configuration pins in user mode ; Off ;
  2039. ; Configuration Voltage Level ; Auto ;
  2040. ; Force Configuration Voltage Level ; Off ;
  2041. ; nCEO ; As output driving ground ;
  2042. ; Data[0] ; As input tri-stated ;
  2043. ; Data[1]/ASDO ; As input tri-stated ;
  2044. ; Data[7..2] ; Unreserved ;
  2045. ; FLASH_nCE/nCSO ; As input tri-stated ;
  2046. ; Other Active Parallel pins ; Unreserved ;
  2047. ; DCLK ; As output driving ground ;
  2048. ; Base pin-out file on sameframe device ; Off ;
  2049. +------------------------------------------------------------------+--------------------------+
  2050. +------------------------------------+
  2051. ; Operating Settings and Conditions ;
  2052. +---------------------------+--------+
  2053. ; Setting ; Value ;
  2054. +---------------------------+--------+
  2055. ; Nominal Core Voltage ; 1.20 V ;
  2056. ; Low Junction Temperature ; 0 °C ;
  2057. ; High Junction Temperature ; 85 °C ;
  2058. +---------------------------+--------+
  2059. +-----------------+
  2060. ; Fitter Messages ;
  2061. +-----------------+
  2062. 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.
  2063. Info (119006): Selected device EP4CE75F29C8 for design "fpga_boot"
  2064. Info (21077): Low junction temperature is 0 degrees C
  2065. Info (21077): High junction temperature is 85 degrees C
  2066. Info (15535): Implemented PLL "altpll:pll_inst|altpll_6o32:auto_generated|pll1" as Cyclone IV E PLL type
  2067. 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
  2068. Info (171004): Fitter is performing a Standard Fit compilation using maximum Fitter effort to optimize design performance
  2069. Warning (171002): Current optimization assignments may cause the Fitter to introduce hold timing violations on connections clocked by global signals
  2070. 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
  2071. Info (176445): Device EP4CE40F29C8 is compatible
  2072. Info (176445): Device EP4CE30F29C8 is compatible
  2073. Info (176445): Device EP4CE55F29C8 is compatible
  2074. Info (176445): Device EP4CE115F29C8 is compatible
  2075. Info (169124): Fitter converted 5 user pins into dedicated programming pins
  2076. Info (169125): Pin ~ALTERA_ASDO_DATA1~ is reserved at location F4
  2077. Info (169125): Pin ~ALTERA_FLASH_nCE_nCSO~ is reserved at location E2
  2078. Info (169125): Pin ~ALTERA_DCLK~ is reserved at location P3
  2079. Info (169125): Pin ~ALTERA_DATA0~ is reserved at location N7
  2080. Info (169125): Pin ~ALTERA_nCEO~ is reserved at location P28
  2081. Warning (15714): Some pins have incomplete I/O assignments. Refer to the I/O Assignment Warnings report for details
  2082. Critical Warning (169085): No exact pin location assignment(s) for 15 pins of 15 total pins
  2083. Info (169086): Pin PIN_HSE not assigned to an exact location on the device
  2084. Info (169086): Pin SPI0_CSN not assigned to an exact location on the device
  2085. Info (169086): Pin SPI0_SCK not assigned to an exact location on the device
  2086. Info (169086): Pin UART0_UARTTXD not assigned to an exact location on the device
  2087. Info (169086): Pin BAUD_RATE not assigned to an exact location on the device
  2088. Info (169086): Pin GPIO4_1 not assigned to an exact location on the device
  2089. Info (169086): Pin GPIO4_2 not assigned to an exact location on the device
  2090. Info (169086): Pin SPI0_SI_IO0 not assigned to an exact location on the device
  2091. Info (169086): Pin TEST_SINGLE not assigned to an exact location on the device
  2092. Info (169086): Pin UART1_RX not assigned to an exact location on the device
  2093. Info (169086): Pin UART1_TX not assigned to an exact location on the device
  2094. Info (169086): Pin so_io1 not assigned to an exact location on the device
  2095. Info (169086): Pin UART0_UARTRXD not assigned to an exact location on the device
  2096. Info (169086): Pin PIN_HSI not assigned to an exact location on the device
  2097. Info (169086): Pin PLL_CLKIN not assigned to an exact location on the device
  2098. Info (332104): Reading SDC File: 'fpga_boot.sdc'
  2099. Info (332110): Deriving PLL clocks
  2100. Info (332110): create_clock -period 125.000 -waveform {0.000 62.500} -name PLL_CLKIN PLL_CLKIN
  2101. 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]}
  2102. Warning (332174): Ignored filter at fpga_boot.sdc(13): rv32|resetn_out could not be matched with a clock or keeper or register or port or pin or cell or partition
  2103. Warning (332049): Ignored set_false_path at fpga_boot.sdc(13): Argument <from> is not an object ID
  2104. Info (332050): set_false_path -from rv32|resetn_out
  2105. Info (332129): Detected timing requirements -- optimizing circuit to achieve only the specified requirements
  2106. Info (332111): Found 4 clocks
  2107. Info (332111): Period Clock Name
  2108. Info (332111): ======== ============
  2109. Info (332111): 125.000 PIN_HSE
  2110. Info (332111): 100.000 PIN_HSI
  2111. Info (332111): 125.000 PLL_CLKIN
  2112. Info (332111): 9.615 pll_inst|auto_generated|pll1|clk[0]
  2113. Info (176352): Promoted node altpll:pll_inst|altpll_6o32:auto_generated|clk[0] (placed in counter C0 of PLL_1)
  2114. Info (176355): Automatically promoted alta_gclksw:gclksw_inst|gclk_switch to use location or clock signal Global Clock CLKCTRL_G3
  2115. Info (176352): Promoted node PIN_HSI~input (placed in PIN Y2 (CLK2, DIFFCLK_1p))
  2116. Info (176355): Automatically promoted alta_gclksw:gclksw_inst|gclk_switch to use location or clock signal Global Clock CLKCTRL_G3
  2117. Info (176353): Automatically promoted node PLL_ENABLE
  2118. Info (176355): Automatically promoted destinations to use location or clock signal Global Clock
  2119. Info (176233): Starting register packing
  2120. Info (176235): Finished register packing
  2121. Extra Info (176219): No registers were packed into other blocks
  2122. Info (176214): Statistics of I/O pins that need to be placed that use the same VCCIO and VREF, before I/O pin placement
  2123. Info (176211): Number of I/O pins in group: 13 (unused VREF, 3.3V VCCIO, 2 input, 3 output, 8 bidirectional)
  2124. Info (176212): I/O standards used: 3.3-V LVTTL.
  2125. Info (176215): I/O bank details before I/O pin placement
  2126. Info (176214): Statistics of I/O banks
  2127. 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
  2128. 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
  2129. 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
  2130. 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
  2131. 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
  2132. 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
  2133. 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
  2134. 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
  2135. Info (128000): Starting physical synthesis optimizations for speed
  2136. Info (128001): Physical synthesis optimizations for speed complete: elapsed time is 00:00:00
  2137. Warning (15705): Ignored locations or region assignments to the following nodes
  2138. Warning (15706): Node "dmactive" is assigned to location or region, but does not exist in design
  2139. Warning (15706): Node "ext_dma_DMACBREQ[0]" is assigned to location or region, but does not exist in design
  2140. Warning (15706): Node "ext_dma_DMACBREQ[1]" is assigned to location or region, but does not exist in design
  2141. Warning (15706): Node "ext_dma_DMACBREQ[2]" is assigned to location or region, but does not exist in design
  2142. Warning (15706): Node "ext_dma_DMACBREQ[3]" is assigned to location or region, but does not exist in design
  2143. Warning (15706): Node "ext_dma_DMACCLR[0]" is assigned to location or region, but does not exist in design
  2144. Warning (15706): Node "ext_dma_DMACCLR[1]" is assigned to location or region, but does not exist in design
  2145. Warning (15706): Node "ext_dma_DMACCLR[2]" is assigned to location or region, but does not exist in design
  2146. Warning (15706): Node "ext_dma_DMACCLR[3]" is assigned to location or region, but does not exist in design
  2147. Warning (15706): Node "ext_dma_DMACLBREQ[0]" is assigned to location or region, but does not exist in design
  2148. Warning (15706): Node "ext_dma_DMACLBREQ[1]" is assigned to location or region, but does not exist in design
  2149. Warning (15706): Node "ext_dma_DMACLBREQ[2]" is assigned to location or region, but does not exist in design
  2150. Warning (15706): Node "ext_dma_DMACLBREQ[3]" is assigned to location or region, but does not exist in design
  2151. Warning (15706): Node "ext_dma_DMACLSREQ[0]" is assigned to location or region, but does not exist in design
  2152. Warning (15706): Node "ext_dma_DMACLSREQ[1]" is assigned to location or region, but does not exist in design
  2153. Warning (15706): Node "ext_dma_DMACLSREQ[2]" is assigned to location or region, but does not exist in design
  2154. Warning (15706): Node "ext_dma_DMACLSREQ[3]" is assigned to location or region, but does not exist in design
  2155. Warning (15706): Node "ext_dma_DMACSREQ[0]" is assigned to location or region, but does not exist in design
  2156. Warning (15706): Node "ext_dma_DMACSREQ[1]" is assigned to location or region, but does not exist in design
  2157. Warning (15706): Node "ext_dma_DMACSREQ[2]" is assigned to location or region, but does not exist in design
  2158. Warning (15706): Node "ext_dma_DMACSREQ[3]" is assigned to location or region, but does not exist in design
  2159. Warning (15706): Node "ext_dma_DMACTC[0]" is assigned to location or region, but does not exist in design
  2160. Warning (15706): Node "ext_dma_DMACTC[1]" is assigned to location or region, but does not exist in design
  2161. Warning (15706): Node "ext_dma_DMACTC[2]" is assigned to location or region, but does not exist in design
  2162. Warning (15706): Node "ext_dma_DMACTC[3]" is assigned to location or region, but does not exist in design
  2163. Warning (15706): Node "ext_int[0]" is assigned to location or region, but does not exist in design
  2164. Warning (15706): Node "ext_int[1]" is assigned to location or region, but does not exist in design
  2165. Warning (15706): Node "ext_int[2]" is assigned to location or region, but does not exist in design
  2166. Warning (15706): Node "ext_int[3]" is assigned to location or region, but does not exist in design
  2167. Warning (15706): Node "ext_int[4]" is assigned to location or region, but does not exist in design
  2168. Warning (15706): Node "ext_int[5]" is assigned to location or region, but does not exist in design
  2169. Warning (15706): Node "ext_int[6]" is assigned to location or region, but does not exist in design
  2170. Warning (15706): Node "ext_int[7]" is assigned to location or region, but does not exist in design
  2171. Warning (15706): Node "ext_resetn" is assigned to location or region, but does not exist in design
  2172. Warning (15706): Node "gpio0_io_out_data[1]" is assigned to location or region, but does not exist in design
  2173. Warning (15706): Node "gpio0_io_out_data[2]" is assigned to location or region, but does not exist in design
  2174. Warning (15706): Node "gpio0_io_out_data[3]" is assigned to location or region, but does not exist in design
  2175. Warning (15706): Node "gpio0_io_out_data[4]" is assigned to location or region, but does not exist in design
  2176. Warning (15706): Node "gpio0_io_out_data[5]" is assigned to location or region, but does not exist in design
  2177. Warning (15706): Node "gpio0_io_out_data[6]" is assigned to location or region, but does not exist in design
  2178. Warning (15706): Node "gpio0_io_out_data[7]" is assigned to location or region, but does not exist in design
  2179. Warning (15706): Node "gpio0_io_out_en[1]" is assigned to location or region, but does not exist in design
  2180. Warning (15706): Node "gpio0_io_out_en[2]" is assigned to location or region, but does not exist in design
  2181. Warning (15706): Node "gpio0_io_out_en[3]" is assigned to location or region, but does not exist in design
  2182. Warning (15706): Node "gpio0_io_out_en[4]" is assigned to location or region, but does not exist in design
  2183. Warning (15706): Node "gpio0_io_out_en[5]" is assigned to location or region, but does not exist in design
  2184. Warning (15706): Node "gpio0_io_out_en[6]" is assigned to location or region, but does not exist in design
  2185. Warning (15706): Node "gpio0_io_out_en[7]" is assigned to location or region, but does not exist in design
  2186. Warning (15706): Node "gpio1_io_in[0]" is assigned to location or region, but does not exist in design
  2187. Warning (15706): Node "gpio1_io_in[1]" is assigned to location or region, but does not exist in design
  2188. Warning (15706): Node "gpio1_io_in[2]" is assigned to location or region, but does not exist in design
  2189. Warning (15706): Node "gpio1_io_in[3]" is assigned to location or region, but does not exist in design
  2190. Warning (15706): Node "gpio1_io_in[4]" is assigned to location or region, but does not exist in design
  2191. Warning (15706): Node "gpio1_io_in[5]" is assigned to location or region, but does not exist in design
  2192. Warning (15706): Node "gpio1_io_in[6]" is assigned to location or region, but does not exist in design
  2193. Warning (15706): Node "gpio1_io_in[7]" is assigned to location or region, but does not exist in design
  2194. Warning (15706): Node "gpio1_io_out_data[0]" is assigned to location or region, but does not exist in design
  2195. Warning (15706): Node "gpio1_io_out_data[1]" is assigned to location or region, but does not exist in design
  2196. Warning (15706): Node "gpio1_io_out_data[2]" is assigned to location or region, but does not exist in design
  2197. Warning (15706): Node "gpio1_io_out_data[3]" is assigned to location or region, but does not exist in design
  2198. Warning (15706): Node "gpio1_io_out_data[4]" is assigned to location or region, but does not exist in design
  2199. Warning (15706): Node "gpio1_io_out_data[5]" is assigned to location or region, but does not exist in design
  2200. Warning (15706): Node "gpio1_io_out_data[6]" is assigned to location or region, but does not exist in design
  2201. Warning (15706): Node "gpio1_io_out_data[7]" is assigned to location or region, but does not exist in design
  2202. Warning (15706): Node "gpio1_io_out_en[0]" is assigned to location or region, but does not exist in design
  2203. Warning (15706): Node "gpio1_io_out_en[1]" is assigned to location or region, but does not exist in design
  2204. Warning (15706): Node "gpio1_io_out_en[2]" is assigned to location or region, but does not exist in design
  2205. Warning (15706): Node "gpio1_io_out_en[3]" is assigned to location or region, but does not exist in design
  2206. Warning (15706): Node "gpio1_io_out_en[4]" is assigned to location or region, but does not exist in design
  2207. Warning (15706): Node "gpio1_io_out_en[5]" is assigned to location or region, but does not exist in design
  2208. Warning (15706): Node "gpio1_io_out_en[6]" is assigned to location or region, but does not exist in design
  2209. Warning (15706): Node "gpio1_io_out_en[7]" is assigned to location or region, but does not exist in design
  2210. Warning (15706): Node "gpio2_io_in[0]" is assigned to location or region, but does not exist in design
  2211. Warning (15706): Node "gpio2_io_in[1]" is assigned to location or region, but does not exist in design
  2212. Warning (15706): Node "gpio2_io_in[2]" is assigned to location or region, but does not exist in design
  2213. Warning (15706): Node "gpio2_io_in[3]" is assigned to location or region, but does not exist in design
  2214. Warning (15706): Node "gpio2_io_in[4]" is assigned to location or region, but does not exist in design
  2215. Warning (15706): Node "gpio2_io_in[5]" is assigned to location or region, but does not exist in design
  2216. Warning (15706): Node "gpio2_io_in[6]" is assigned to location or region, but does not exist in design
  2217. Warning (15706): Node "gpio2_io_in[7]" is assigned to location or region, but does not exist in design
  2218. Warning (15706): Node "gpio2_io_out_data[0]" is assigned to location or region, but does not exist in design
  2219. Warning (15706): Node "gpio2_io_out_data[1]" is assigned to location or region, but does not exist in design
  2220. Warning (15706): Node "gpio2_io_out_data[2]" is assigned to location or region, but does not exist in design
  2221. Warning (15706): Node "gpio2_io_out_data[3]" is assigned to location or region, but does not exist in design
  2222. Warning (15706): Node "gpio2_io_out_data[4]" is assigned to location or region, but does not exist in design
  2223. Warning (15706): Node "gpio2_io_out_data[5]" is assigned to location or region, but does not exist in design
  2224. Warning (15706): Node "gpio2_io_out_data[6]" is assigned to location or region, but does not exist in design
  2225. Warning (15706): Node "gpio2_io_out_data[7]" is assigned to location or region, but does not exist in design
  2226. Warning (15706): Node "gpio2_io_out_en[0]" is assigned to location or region, but does not exist in design
  2227. Warning (15706): Node "gpio2_io_out_en[1]" is assigned to location or region, but does not exist in design
  2228. Warning (15706): Node "gpio2_io_out_en[2]" is assigned to location or region, but does not exist in design
  2229. Warning (15706): Node "gpio2_io_out_en[3]" is assigned to location or region, but does not exist in design
  2230. Warning (15706): Node "gpio2_io_out_en[4]" is assigned to location or region, but does not exist in design
  2231. Warning (15706): Node "gpio2_io_out_en[5]" is assigned to location or region, but does not exist in design
  2232. Warning (15706): Node "gpio2_io_out_en[6]" is assigned to location or region, but does not exist in design
  2233. Warning (15706): Node "gpio2_io_out_en[7]" is assigned to location or region, but does not exist in design
  2234. Warning (15706): Node "gpio3_io_in[0]" is assigned to location or region, but does not exist in design
  2235. Warning (15706): Node "gpio3_io_in[1]" is assigned to location or region, but does not exist in design
  2236. Warning (15706): Node "gpio3_io_in[2]" is assigned to location or region, but does not exist in design
  2237. Warning (15706): Node "gpio3_io_in[3]" is assigned to location or region, but does not exist in design
  2238. Warning (15706): Node "gpio3_io_in[4]" is assigned to location or region, but does not exist in design
  2239. Warning (15706): Node "gpio3_io_in[5]" is assigned to location or region, but does not exist in design
  2240. Warning (15706): Node "gpio3_io_in[6]" is assigned to location or region, but does not exist in design
  2241. Warning (15706): Node "gpio3_io_in[7]" is assigned to location or region, but does not exist in design
  2242. Warning (15706): Node "gpio3_io_out_data[0]" is assigned to location or region, but does not exist in design
  2243. Warning (15706): Node "gpio3_io_out_data[1]" is assigned to location or region, but does not exist in design
  2244. Warning (15706): Node "gpio3_io_out_data[2]" is assigned to location or region, but does not exist in design
  2245. Warning (15706): Node "gpio3_io_out_data[3]" is assigned to location or region, but does not exist in design
  2246. Warning (15706): Node "gpio3_io_out_data[4]" is assigned to location or region, but does not exist in design
  2247. Warning (15706): Node "gpio3_io_out_data[5]" is assigned to location or region, but does not exist in design
  2248. Warning (15706): Node "gpio3_io_out_data[6]" is assigned to location or region, but does not exist in design
  2249. Warning (15706): Node "gpio3_io_out_data[7]" is assigned to location or region, but does not exist in design
  2250. Warning (15706): Node "gpio3_io_out_en[0]" is assigned to location or region, but does not exist in design
  2251. Warning (15706): Node "gpio3_io_out_en[1]" is assigned to location or region, but does not exist in design
  2252. Warning (15706): Node "gpio3_io_out_en[2]" is assigned to location or region, but does not exist in design
  2253. Warning (15706): Node "gpio3_io_out_en[3]" is assigned to location or region, but does not exist in design
  2254. Warning (15706): Node "gpio3_io_out_en[4]" is assigned to location or region, but does not exist in design
  2255. Warning (15706): Node "gpio3_io_out_en[5]" is assigned to location or region, but does not exist in design
  2256. Warning (15706): Node "gpio3_io_out_en[6]" is assigned to location or region, but does not exist in design
  2257. Warning (15706): Node "gpio3_io_out_en[7]" is assigned to location or region, but does not exist in design
  2258. Warning (15706): Node "gpio4_io_out_data[0]" is assigned to location or region, but does not exist in design
  2259. Warning (15706): Node "gpio4_io_out_data[3]" is assigned to location or region, but does not exist in design
  2260. Warning (15706): Node "gpio4_io_out_data[4]" is assigned to location or region, but does not exist in design
  2261. Warning (15706): Node "gpio4_io_out_data[7]" is assigned to location or region, but does not exist in design
  2262. Warning (15706): Node "gpio4_io_out_en[0]" is assigned to location or region, but does not exist in design
  2263. Warning (15706): Node "gpio4_io_out_en[3]" is assigned to location or region, but does not exist in design
  2264. Warning (15706): Node "gpio4_io_out_en[4]" is assigned to location or region, but does not exist in design
  2265. Warning (15706): Node "gpio4_io_out_en[7]" is assigned to location or region, but does not exist in design
  2266. Warning (15706): Node "gpio5_io_in[0]" is assigned to location or region, but does not exist in design
  2267. Warning (15706): Node "gpio5_io_in[1]" is assigned to location or region, but does not exist in design
  2268. Warning (15706): Node "gpio5_io_in[2]" is assigned to location or region, but does not exist in design
  2269. Warning (15706): Node "gpio5_io_in[3]" is assigned to location or region, but does not exist in design
  2270. Warning (15706): Node "gpio5_io_in[4]" is assigned to location or region, but does not exist in design
  2271. Warning (15706): Node "gpio5_io_in[5]" is assigned to location or region, but does not exist in design
  2272. Warning (15706): Node "gpio5_io_in[6]" is assigned to location or region, but does not exist in design
  2273. Warning (15706): Node "gpio5_io_in[7]" is assigned to location or region, but does not exist in design
  2274. Warning (15706): Node "gpio5_io_out_data[0]" is assigned to location or region, but does not exist in design
  2275. Warning (15706): Node "gpio5_io_out_data[1]" is assigned to location or region, but does not exist in design
  2276. Warning (15706): Node "gpio5_io_out_data[2]" is assigned to location or region, but does not exist in design
  2277. Warning (15706): Node "gpio5_io_out_data[3]" is assigned to location or region, but does not exist in design
  2278. Warning (15706): Node "gpio5_io_out_data[4]" is assigned to location or region, but does not exist in design
  2279. Warning (15706): Node "gpio5_io_out_data[5]" is assigned to location or region, but does not exist in design
  2280. Warning (15706): Node "gpio5_io_out_data[6]" is assigned to location or region, but does not exist in design
  2281. Warning (15706): Node "gpio5_io_out_data[7]" is assigned to location or region, but does not exist in design
  2282. Warning (15706): Node "gpio5_io_out_en[0]" is assigned to location or region, but does not exist in design
  2283. Warning (15706): Node "gpio5_io_out_en[1]" is assigned to location or region, but does not exist in design
  2284. Warning (15706): Node "gpio5_io_out_en[2]" is assigned to location or region, but does not exist in design
  2285. Warning (15706): Node "gpio5_io_out_en[3]" is assigned to location or region, but does not exist in design
  2286. Warning (15706): Node "gpio5_io_out_en[4]" is assigned to location or region, but does not exist in design
  2287. Warning (15706): Node "gpio5_io_out_en[5]" is assigned to location or region, but does not exist in design
  2288. Warning (15706): Node "gpio5_io_out_en[6]" is assigned to location or region, but does not exist in design
  2289. Warning (15706): Node "gpio5_io_out_en[7]" is assigned to location or region, but does not exist in design
  2290. Warning (15706): Node "gpio6_io_out_data[0]" is assigned to location or region, but does not exist in design
  2291. Warning (15706): Node "gpio6_io_out_data[1]" is assigned to location or region, but does not exist in design
  2292. Warning (15706): Node "gpio6_io_out_data[2]" is assigned to location or region, but does not exist in design
  2293. Warning (15706): Node "gpio6_io_out_data[3]" is assigned to location or region, but does not exist in design
  2294. Warning (15706): Node "gpio6_io_out_data[4]" is assigned to location or region, but does not exist in design
  2295. Warning (15706): Node "gpio6_io_out_data[5]" is assigned to location or region, but does not exist in design
  2296. Warning (15706): Node "gpio6_io_out_data[6]" is assigned to location or region, but does not exist in design
  2297. Warning (15706): Node "gpio6_io_out_data[7]" is assigned to location or region, but does not exist in design
  2298. Warning (15706): Node "gpio6_io_out_en[0]" is assigned to location or region, but does not exist in design
  2299. Warning (15706): Node "gpio6_io_out_en[1]" is assigned to location or region, but does not exist in design
  2300. Warning (15706): Node "gpio6_io_out_en[2]" is assigned to location or region, but does not exist in design
  2301. Warning (15706): Node "gpio6_io_out_en[3]" is assigned to location or region, but does not exist in design
  2302. Warning (15706): Node "gpio6_io_out_en[4]" is assigned to location or region, but does not exist in design
  2303. Warning (15706): Node "gpio6_io_out_en[5]" is assigned to location or region, but does not exist in design
  2304. Warning (15706): Node "gpio6_io_out_en[6]" is assigned to location or region, but does not exist in design
  2305. Warning (15706): Node "gpio6_io_out_en[7]" is assigned to location or region, but does not exist in design
  2306. Warning (15706): Node "gpio7_io_in[0]" is assigned to location or region, but does not exist in design
  2307. Warning (15706): Node "gpio7_io_in[1]" is assigned to location or region, but does not exist in design
  2308. Warning (15706): Node "gpio7_io_in[2]" is assigned to location or region, but does not exist in design
  2309. Warning (15706): Node "gpio7_io_in[3]" is assigned to location or region, but does not exist in design
  2310. Warning (15706): Node "gpio7_io_in[4]" is assigned to location or region, but does not exist in design
  2311. Warning (15706): Node "gpio7_io_in[5]" is assigned to location or region, but does not exist in design
  2312. Warning (15706): Node "gpio7_io_in[6]" is assigned to location or region, but does not exist in design
  2313. Warning (15706): Node "gpio7_io_in[7]" is assigned to location or region, but does not exist in design
  2314. Warning (15706): Node "gpio7_io_out_data[0]" is assigned to location or region, but does not exist in design
  2315. Warning (15706): Node "gpio7_io_out_data[1]" is assigned to location or region, but does not exist in design
  2316. Warning (15706): Node "gpio7_io_out_data[2]" is assigned to location or region, but does not exist in design
  2317. Warning (15706): Node "gpio7_io_out_data[3]" is assigned to location or region, but does not exist in design
  2318. Warning (15706): Node "gpio7_io_out_data[4]" is assigned to location or region, but does not exist in design
  2319. Warning (15706): Node "gpio7_io_out_data[5]" is assigned to location or region, but does not exist in design
  2320. Warning (15706): Node "gpio7_io_out_data[7]" is assigned to location or region, but does not exist in design
  2321. Warning (15706): Node "gpio7_io_out_en[0]" is assigned to location or region, but does not exist in design
  2322. Warning (15706): Node "gpio7_io_out_en[1]" is assigned to location or region, but does not exist in design
  2323. Warning (15706): Node "gpio7_io_out_en[2]" is assigned to location or region, but does not exist in design
  2324. Warning (15706): Node "gpio7_io_out_en[3]" is assigned to location or region, but does not exist in design
  2325. Warning (15706): Node "gpio7_io_out_en[4]" is assigned to location or region, but does not exist in design
  2326. Warning (15706): Node "gpio7_io_out_en[5]" is assigned to location or region, but does not exist in design
  2327. Warning (15706): Node "gpio7_io_out_en[7]" is assigned to location or region, but does not exist in design
  2328. Warning (15706): Node "gpio8_io_in[0]" is assigned to location or region, but does not exist in design
  2329. Warning (15706): Node "gpio8_io_in[1]" is assigned to location or region, but does not exist in design
  2330. Warning (15706): Node "gpio8_io_in[2]" is assigned to location or region, but does not exist in design
  2331. Warning (15706): Node "gpio8_io_in[3]" is assigned to location or region, but does not exist in design
  2332. Warning (15706): Node "gpio8_io_in[4]" is assigned to location or region, but does not exist in design
  2333. Warning (15706): Node "gpio8_io_in[5]" is assigned to location or region, but does not exist in design
  2334. Warning (15706): Node "gpio8_io_in[6]" is assigned to location or region, but does not exist in design
  2335. Warning (15706): Node "gpio8_io_in[7]" is assigned to location or region, but does not exist in design
  2336. Warning (15706): Node "gpio8_io_out_data[0]" is assigned to location or region, but does not exist in design
  2337. Warning (15706): Node "gpio8_io_out_data[1]" is assigned to location or region, but does not exist in design
  2338. Warning (15706): Node "gpio8_io_out_data[2]" is assigned to location or region, but does not exist in design
  2339. Warning (15706): Node "gpio8_io_out_data[3]" is assigned to location or region, but does not exist in design
  2340. Warning (15706): Node "gpio8_io_out_data[4]" is assigned to location or region, but does not exist in design
  2341. Warning (15706): Node "gpio8_io_out_data[5]" is assigned to location or region, but does not exist in design
  2342. Warning (15706): Node "gpio8_io_out_data[6]" is assigned to location or region, but does not exist in design
  2343. Warning (15706): Node "gpio8_io_out_data[7]" is assigned to location or region, but does not exist in design
  2344. Warning (15706): Node "gpio8_io_out_en[0]" is assigned to location or region, but does not exist in design
  2345. Warning (15706): Node "gpio8_io_out_en[1]" is assigned to location or region, but does not exist in design
  2346. Warning (15706): Node "gpio8_io_out_en[2]" is assigned to location or region, but does not exist in design
  2347. Warning (15706): Node "gpio8_io_out_en[3]" is assigned to location or region, but does not exist in design
  2348. Warning (15706): Node "gpio8_io_out_en[4]" is assigned to location or region, but does not exist in design
  2349. Warning (15706): Node "gpio8_io_out_en[5]" is assigned to location or region, but does not exist in design
  2350. Warning (15706): Node "gpio8_io_out_en[6]" is assigned to location or region, but does not exist in design
  2351. Warning (15706): Node "gpio8_io_out_en[7]" is assigned to location or region, but does not exist in design
  2352. Warning (15706): Node "gpio9_io_in[0]" is assigned to location or region, but does not exist in design
  2353. Warning (15706): Node "gpio9_io_in[1]" is assigned to location or region, but does not exist in design
  2354. Warning (15706): Node "gpio9_io_in[2]" is assigned to location or region, but does not exist in design
  2355. Warning (15706): Node "gpio9_io_in[3]" is assigned to location or region, but does not exist in design
  2356. Warning (15706): Node "gpio9_io_in[4]" is assigned to location or region, but does not exist in design
  2357. Warning (15706): Node "gpio9_io_in[5]" is assigned to location or region, but does not exist in design
  2358. Warning (15706): Node "gpio9_io_in[6]" is assigned to location or region, but does not exist in design
  2359. Warning (15706): Node "gpio9_io_in[7]" is assigned to location or region, but does not exist in design
  2360. Warning (15706): Node "gpio9_io_out_data[0]" is assigned to location or region, but does not exist in design
  2361. Warning (15706): Node "gpio9_io_out_data[1]" is assigned to location or region, but does not exist in design
  2362. Warning (15706): Node "gpio9_io_out_data[2]" is assigned to location or region, but does not exist in design
  2363. Warning (15706): Node "gpio9_io_out_data[3]" is assigned to location or region, but does not exist in design
  2364. Warning (15706): Node "gpio9_io_out_data[4]" is assigned to location or region, but does not exist in design
  2365. Warning (15706): Node "gpio9_io_out_data[5]" is assigned to location or region, but does not exist in design
  2366. Warning (15706): Node "gpio9_io_out_data[6]" is assigned to location or region, but does not exist in design
  2367. Warning (15706): Node "gpio9_io_out_data[7]" is assigned to location or region, but does not exist in design
  2368. Warning (15706): Node "gpio9_io_out_en[0]" is assigned to location or region, but does not exist in design
  2369. Warning (15706): Node "gpio9_io_out_en[1]" is assigned to location or region, but does not exist in design
  2370. Warning (15706): Node "gpio9_io_out_en[2]" is assigned to location or region, but does not exist in design
  2371. Warning (15706): Node "gpio9_io_out_en[3]" is assigned to location or region, but does not exist in design
  2372. Warning (15706): Node "gpio9_io_out_en[4]" is assigned to location or region, but does not exist in design
  2373. Warning (15706): Node "gpio9_io_out_en[5]" is assigned to location or region, but does not exist in design
  2374. Warning (15706): Node "gpio9_io_out_en[6]" is assigned to location or region, but does not exist in design
  2375. Warning (15706): Node "gpio9_io_out_en[7]" is assigned to location or region, but does not exist in design
  2376. Warning (15706): Node "local_int[0]" is assigned to location or region, but does not exist in design
  2377. Warning (15706): Node "local_int[1]" is assigned to location or region, but does not exist in design
  2378. Warning (15706): Node "local_int[2]" is assigned to location or region, but does not exist in design
  2379. Warning (15706): Node "local_int[3]" is assigned to location or region, but does not exist in design
  2380. Warning (15706): Node "mem_ahb_haddr[0]" is assigned to location or region, but does not exist in design
  2381. Warning (15706): Node "mem_ahb_haddr[10]" is assigned to location or region, but does not exist in design
  2382. Warning (15706): Node "mem_ahb_haddr[11]" is assigned to location or region, but does not exist in design
  2383. Warning (15706): Node "mem_ahb_haddr[12]" is assigned to location or region, but does not exist in design
  2384. Warning (15706): Node "mem_ahb_haddr[13]" is assigned to location or region, but does not exist in design
  2385. Warning (15706): Node "mem_ahb_haddr[14]" is assigned to location or region, but does not exist in design
  2386. Warning (15706): Node "mem_ahb_haddr[15]" is assigned to location or region, but does not exist in design
  2387. Warning (15706): Node "mem_ahb_haddr[16]" is assigned to location or region, but does not exist in design
  2388. Warning (15706): Node "mem_ahb_haddr[17]" is assigned to location or region, but does not exist in design
  2389. Warning (15706): Node "mem_ahb_haddr[18]" is assigned to location or region, but does not exist in design
  2390. Warning (15706): Node "mem_ahb_haddr[19]" is assigned to location or region, but does not exist in design
  2391. Warning (15706): Node "mem_ahb_haddr[1]" is assigned to location or region, but does not exist in design
  2392. Warning (15706): Node "mem_ahb_haddr[20]" is assigned to location or region, but does not exist in design
  2393. Warning (15706): Node "mem_ahb_haddr[21]" is assigned to location or region, but does not exist in design
  2394. Warning (15706): Node "mem_ahb_haddr[22]" is assigned to location or region, but does not exist in design
  2395. Warning (15706): Node "mem_ahb_haddr[23]" is assigned to location or region, but does not exist in design
  2396. Warning (15706): Node "mem_ahb_haddr[24]" is assigned to location or region, but does not exist in design
  2397. Warning (15706): Node "mem_ahb_haddr[25]" is assigned to location or region, but does not exist in design
  2398. Warning (15706): Node "mem_ahb_haddr[26]" is assigned to location or region, but does not exist in design
  2399. Warning (15706): Node "mem_ahb_haddr[27]" is assigned to location or region, but does not exist in design
  2400. Warning (15706): Node "mem_ahb_haddr[28]" is assigned to location or region, but does not exist in design
  2401. Warning (15706): Node "mem_ahb_haddr[29]" is assigned to location or region, but does not exist in design
  2402. Warning (15706): Node "mem_ahb_haddr[2]" is assigned to location or region, but does not exist in design
  2403. Warning (15706): Node "mem_ahb_haddr[30]" is assigned to location or region, but does not exist in design
  2404. Warning (15706): Node "mem_ahb_haddr[31]" is assigned to location or region, but does not exist in design
  2405. Warning (15706): Node "mem_ahb_haddr[3]" is assigned to location or region, but does not exist in design
  2406. Warning (15706): Node "mem_ahb_haddr[4]" is assigned to location or region, but does not exist in design
  2407. Warning (15706): Node "mem_ahb_haddr[5]" is assigned to location or region, but does not exist in design
  2408. Warning (15706): Node "mem_ahb_haddr[6]" is assigned to location or region, but does not exist in design
  2409. Warning (15706): Node "mem_ahb_haddr[7]" is assigned to location or region, but does not exist in design
  2410. Warning (15706): Node "mem_ahb_haddr[8]" is assigned to location or region, but does not exist in design
  2411. Warning (15706): Node "mem_ahb_haddr[9]" is assigned to location or region, but does not exist in design
  2412. Warning (15706): Node "mem_ahb_hburst[0]" is assigned to location or region, but does not exist in design
  2413. Warning (15706): Node "mem_ahb_hburst[1]" is assigned to location or region, but does not exist in design
  2414. Warning (15706): Node "mem_ahb_hburst[2]" is assigned to location or region, but does not exist in design
  2415. Warning (15706): Node "mem_ahb_hrdata[0]" is assigned to location or region, but does not exist in design
  2416. Warning (15706): Node "mem_ahb_hrdata[10]" is assigned to location or region, but does not exist in design
  2417. Warning (15706): Node "mem_ahb_hrdata[11]" is assigned to location or region, but does not exist in design
  2418. Warning (15706): Node "mem_ahb_hrdata[12]" is assigned to location or region, but does not exist in design
  2419. Warning (15706): Node "mem_ahb_hrdata[13]" is assigned to location or region, but does not exist in design
  2420. Warning (15706): Node "mem_ahb_hrdata[14]" is assigned to location or region, but does not exist in design
  2421. Warning (15706): Node "mem_ahb_hrdata[15]" is assigned to location or region, but does not exist in design
  2422. Warning (15706): Node "mem_ahb_hrdata[16]" is assigned to location or region, but does not exist in design
  2423. Warning (15706): Node "mem_ahb_hrdata[17]" is assigned to location or region, but does not exist in design
  2424. Warning (15706): Node "mem_ahb_hrdata[18]" is assigned to location or region, but does not exist in design
  2425. Warning (15706): Node "mem_ahb_hrdata[19]" is assigned to location or region, but does not exist in design
  2426. Warning (15706): Node "mem_ahb_hrdata[1]" is assigned to location or region, but does not exist in design
  2427. Warning (15706): Node "mem_ahb_hrdata[20]" is assigned to location or region, but does not exist in design
  2428. Warning (15706): Node "mem_ahb_hrdata[21]" is assigned to location or region, but does not exist in design
  2429. Warning (15706): Node "mem_ahb_hrdata[22]" is assigned to location or region, but does not exist in design
  2430. Warning (15706): Node "mem_ahb_hrdata[23]" is assigned to location or region, but does not exist in design
  2431. Warning (15706): Node "mem_ahb_hrdata[24]" is assigned to location or region, but does not exist in design
  2432. Warning (15706): Node "mem_ahb_hrdata[25]" is assigned to location or region, but does not exist in design
  2433. Warning (15706): Node "mem_ahb_hrdata[26]" is assigned to location or region, but does not exist in design
  2434. Warning (15706): Node "mem_ahb_hrdata[27]" is assigned to location or region, but does not exist in design
  2435. Warning (15706): Node "mem_ahb_hrdata[28]" is assigned to location or region, but does not exist in design
  2436. Warning (15706): Node "mem_ahb_hrdata[29]" is assigned to location or region, but does not exist in design
  2437. Warning (15706): Node "mem_ahb_hrdata[2]" is assigned to location or region, but does not exist in design
  2438. Warning (15706): Node "mem_ahb_hrdata[30]" is assigned to location or region, but does not exist in design
  2439. Warning (15706): Node "mem_ahb_hrdata[31]" is assigned to location or region, but does not exist in design
  2440. Warning (15706): Node "mem_ahb_hrdata[3]" is assigned to location or region, but does not exist in design
  2441. Warning (15706): Node "mem_ahb_hrdata[4]" is assigned to location or region, but does not exist in design
  2442. Warning (15706): Node "mem_ahb_hrdata[5]" is assigned to location or region, but does not exist in design
  2443. Warning (15706): Node "mem_ahb_hrdata[6]" is assigned to location or region, but does not exist in design
  2444. Warning (15706): Node "mem_ahb_hrdata[7]" is assigned to location or region, but does not exist in design
  2445. Warning (15706): Node "mem_ahb_hrdata[8]" is assigned to location or region, but does not exist in design
  2446. Warning (15706): Node "mem_ahb_hrdata[9]" is assigned to location or region, but does not exist in design
  2447. Warning (15706): Node "mem_ahb_hready" is assigned to location or region, but does not exist in design
  2448. Warning (15706): Node "mem_ahb_hreadyout" is assigned to location or region, but does not exist in design
  2449. Warning (15706): Node "mem_ahb_hresp" is assigned to location or region, but does not exist in design
  2450. Warning (15706): Node "mem_ahb_hsize[0]" is assigned to location or region, but does not exist in design
  2451. Warning (15706): Node "mem_ahb_hsize[1]" is assigned to location or region, but does not exist in design
  2452. Warning (15706): Node "mem_ahb_hsize[2]" is assigned to location or region, but does not exist in design
  2453. Warning (15706): Node "mem_ahb_htrans[0]" is assigned to location or region, but does not exist in design
  2454. Warning (15706): Node "mem_ahb_htrans[1]" is assigned to location or region, but does not exist in design
  2455. Warning (15706): Node "mem_ahb_hwdata[0]" is assigned to location or region, but does not exist in design
  2456. Warning (15706): Node "mem_ahb_hwdata[10]" is assigned to location or region, but does not exist in design
  2457. Warning (15706): Node "mem_ahb_hwdata[11]" is assigned to location or region, but does not exist in design
  2458. Warning (15706): Node "mem_ahb_hwdata[12]" is assigned to location or region, but does not exist in design
  2459. Warning (15706): Node "mem_ahb_hwdata[13]" is assigned to location or region, but does not exist in design
  2460. Warning (15706): Node "mem_ahb_hwdata[14]" is assigned to location or region, but does not exist in design
  2461. Warning (15706): Node "mem_ahb_hwdata[15]" is assigned to location or region, but does not exist in design
  2462. Warning (15706): Node "mem_ahb_hwdata[16]" is assigned to location or region, but does not exist in design
  2463. Warning (15706): Node "mem_ahb_hwdata[17]" is assigned to location or region, but does not exist in design
  2464. Warning (15706): Node "mem_ahb_hwdata[18]" is assigned to location or region, but does not exist in design
  2465. Warning (15706): Node "mem_ahb_hwdata[19]" is assigned to location or region, but does not exist in design
  2466. Warning (15706): Node "mem_ahb_hwdata[1]" is assigned to location or region, but does not exist in design
  2467. Warning (15706): Node "mem_ahb_hwdata[20]" is assigned to location or region, but does not exist in design
  2468. Warning (15706): Node "mem_ahb_hwdata[21]" is assigned to location or region, but does not exist in design
  2469. Warning (15706): Node "mem_ahb_hwdata[22]" is assigned to location or region, but does not exist in design
  2470. Warning (15706): Node "mem_ahb_hwdata[23]" is assigned to location or region, but does not exist in design
  2471. Warning (15706): Node "mem_ahb_hwdata[24]" is assigned to location or region, but does not exist in design
  2472. Warning (15706): Node "mem_ahb_hwdata[25]" is assigned to location or region, but does not exist in design
  2473. Warning (15706): Node "mem_ahb_hwdata[26]" is assigned to location or region, but does not exist in design
  2474. Warning (15706): Node "mem_ahb_hwdata[27]" is assigned to location or region, but does not exist in design
  2475. Warning (15706): Node "mem_ahb_hwdata[28]" is assigned to location or region, but does not exist in design
  2476. Warning (15706): Node "mem_ahb_hwdata[29]" is assigned to location or region, but does not exist in design
  2477. Warning (15706): Node "mem_ahb_hwdata[2]" is assigned to location or region, but does not exist in design
  2478. Warning (15706): Node "mem_ahb_hwdata[30]" is assigned to location or region, but does not exist in design
  2479. Warning (15706): Node "mem_ahb_hwdata[31]" is assigned to location or region, but does not exist in design
  2480. Warning (15706): Node "mem_ahb_hwdata[3]" is assigned to location or region, but does not exist in design
  2481. Warning (15706): Node "mem_ahb_hwdata[4]" is assigned to location or region, but does not exist in design
  2482. Warning (15706): Node "mem_ahb_hwdata[5]" is assigned to location or region, but does not exist in design
  2483. Warning (15706): Node "mem_ahb_hwdata[6]" is assigned to location or region, but does not exist in design
  2484. Warning (15706): Node "mem_ahb_hwdata[7]" is assigned to location or region, but does not exist in design
  2485. Warning (15706): Node "mem_ahb_hwdata[8]" is assigned to location or region, but does not exist in design
  2486. Warning (15706): Node "mem_ahb_hwdata[9]" is assigned to location or region, but does not exist in design
  2487. Warning (15706): Node "mem_ahb_hwrite" is assigned to location or region, but does not exist in design
  2488. Warning (15706): Node "resetn_out" is assigned to location or region, but does not exist in design
  2489. Warning (15706): Node "slave_ahb_haddr[0]" is assigned to location or region, but does not exist in design
  2490. Warning (15706): Node "slave_ahb_haddr[10]" is assigned to location or region, but does not exist in design
  2491. Warning (15706): Node "slave_ahb_haddr[11]" is assigned to location or region, but does not exist in design
  2492. Warning (15706): Node "slave_ahb_haddr[12]" is assigned to location or region, but does not exist in design
  2493. Warning (15706): Node "slave_ahb_haddr[13]" is assigned to location or region, but does not exist in design
  2494. Warning (15706): Node "slave_ahb_haddr[14]" is assigned to location or region, but does not exist in design
  2495. Warning (15706): Node "slave_ahb_haddr[15]" is assigned to location or region, but does not exist in design
  2496. Warning (15706): Node "slave_ahb_haddr[16]" is assigned to location or region, but does not exist in design
  2497. Warning (15706): Node "slave_ahb_haddr[17]" is assigned to location or region, but does not exist in design
  2498. Warning (15706): Node "slave_ahb_haddr[18]" is assigned to location or region, but does not exist in design
  2499. Warning (15706): Node "slave_ahb_haddr[19]" is assigned to location or region, but does not exist in design
  2500. Warning (15706): Node "slave_ahb_haddr[1]" is assigned to location or region, but does not exist in design
  2501. Warning (15706): Node "slave_ahb_haddr[20]" is assigned to location or region, but does not exist in design
  2502. Warning (15706): Node "slave_ahb_haddr[21]" is assigned to location or region, but does not exist in design
  2503. Warning (15706): Node "slave_ahb_haddr[22]" is assigned to location or region, but does not exist in design
  2504. Warning (15706): Node "slave_ahb_haddr[23]" is assigned to location or region, but does not exist in design
  2505. Warning (15706): Node "slave_ahb_haddr[24]" is assigned to location or region, but does not exist in design
  2506. Warning (15706): Node "slave_ahb_haddr[25]" is assigned to location or region, but does not exist in design
  2507. Warning (15706): Node "slave_ahb_haddr[26]" is assigned to location or region, but does not exist in design
  2508. Warning (15706): Node "slave_ahb_haddr[27]" is assigned to location or region, but does not exist in design
  2509. Warning (15706): Node "slave_ahb_haddr[28]" is assigned to location or region, but does not exist in design
  2510. Warning (15706): Node "slave_ahb_haddr[29]" is assigned to location or region, but does not exist in design
  2511. Warning (15706): Node "slave_ahb_haddr[2]" is assigned to location or region, but does not exist in design
  2512. Warning (15706): Node "slave_ahb_haddr[30]" is assigned to location or region, but does not exist in design
  2513. Warning (15706): Node "slave_ahb_haddr[31]" is assigned to location or region, but does not exist in design
  2514. Warning (15706): Node "slave_ahb_haddr[3]" is assigned to location or region, but does not exist in design
  2515. Warning (15706): Node "slave_ahb_haddr[4]" is assigned to location or region, but does not exist in design
  2516. Warning (15706): Node "slave_ahb_haddr[5]" is assigned to location or region, but does not exist in design
  2517. Warning (15706): Node "slave_ahb_haddr[6]" is assigned to location or region, but does not exist in design
  2518. Warning (15706): Node "slave_ahb_haddr[7]" is assigned to location or region, but does not exist in design
  2519. Warning (15706): Node "slave_ahb_haddr[8]" is assigned to location or region, but does not exist in design
  2520. Warning (15706): Node "slave_ahb_haddr[9]" is assigned to location or region, but does not exist in design
  2521. Warning (15706): Node "slave_ahb_hburst[0]" is assigned to location or region, but does not exist in design
  2522. Warning (15706): Node "slave_ahb_hburst[1]" is assigned to location or region, but does not exist in design
  2523. Warning (15706): Node "slave_ahb_hburst[2]" is assigned to location or region, but does not exist in design
  2524. Warning (15706): Node "slave_ahb_hrdata[0]" is assigned to location or region, but does not exist in design
  2525. Warning (15706): Node "slave_ahb_hrdata[10]" is assigned to location or region, but does not exist in design
  2526. Warning (15706): Node "slave_ahb_hrdata[11]" is assigned to location or region, but does not exist in design
  2527. Warning (15706): Node "slave_ahb_hrdata[12]" is assigned to location or region, but does not exist in design
  2528. Warning (15706): Node "slave_ahb_hrdata[13]" is assigned to location or region, but does not exist in design
  2529. Warning (15706): Node "slave_ahb_hrdata[14]" is assigned to location or region, but does not exist in design
  2530. Warning (15706): Node "slave_ahb_hrdata[15]" is assigned to location or region, but does not exist in design
  2531. Warning (15706): Node "slave_ahb_hrdata[16]" is assigned to location or region, but does not exist in design
  2532. Warning (15706): Node "slave_ahb_hrdata[17]" is assigned to location or region, but does not exist in design
  2533. Warning (15706): Node "slave_ahb_hrdata[18]" is assigned to location or region, but does not exist in design
  2534. Warning (15706): Node "slave_ahb_hrdata[19]" is assigned to location or region, but does not exist in design
  2535. Warning (15706): Node "slave_ahb_hrdata[1]" is assigned to location or region, but does not exist in design
  2536. Warning (15706): Node "slave_ahb_hrdata[20]" is assigned to location or region, but does not exist in design
  2537. Warning (15706): Node "slave_ahb_hrdata[21]" is assigned to location or region, but does not exist in design
  2538. Warning (15706): Node "slave_ahb_hrdata[22]" is assigned to location or region, but does not exist in design
  2539. Warning (15706): Node "slave_ahb_hrdata[23]" is assigned to location or region, but does not exist in design
  2540. Warning (15706): Node "slave_ahb_hrdata[24]" is assigned to location or region, but does not exist in design
  2541. Warning (15706): Node "slave_ahb_hrdata[25]" is assigned to location or region, but does not exist in design
  2542. Warning (15706): Node "slave_ahb_hrdata[26]" is assigned to location or region, but does not exist in design
  2543. Warning (15706): Node "slave_ahb_hrdata[27]" is assigned to location or region, but does not exist in design
  2544. Warning (15706): Node "slave_ahb_hrdata[28]" is assigned to location or region, but does not exist in design
  2545. Warning (15706): Node "slave_ahb_hrdata[29]" is assigned to location or region, but does not exist in design
  2546. Warning (15706): Node "slave_ahb_hrdata[2]" is assigned to location or region, but does not exist in design
  2547. Warning (15706): Node "slave_ahb_hrdata[30]" is assigned to location or region, but does not exist in design
  2548. Warning (15706): Node "slave_ahb_hrdata[31]" is assigned to location or region, but does not exist in design
  2549. Warning (15706): Node "slave_ahb_hrdata[3]" is assigned to location or region, but does not exist in design
  2550. Warning (15706): Node "slave_ahb_hrdata[4]" is assigned to location or region, but does not exist in design
  2551. Warning (15706): Node "slave_ahb_hrdata[5]" is assigned to location or region, but does not exist in design
  2552. Warning (15706): Node "slave_ahb_hrdata[6]" is assigned to location or region, but does not exist in design
  2553. Warning (15706): Node "slave_ahb_hrdata[7]" is assigned to location or region, but does not exist in design
  2554. Warning (15706): Node "slave_ahb_hrdata[8]" is assigned to location or region, but does not exist in design
  2555. Warning (15706): Node "slave_ahb_hrdata[9]" is assigned to location or region, but does not exist in design
  2556. Warning (15706): Node "slave_ahb_hready" is assigned to location or region, but does not exist in design
  2557. Warning (15706): Node "slave_ahb_hreadyout" is assigned to location or region, but does not exist in design
  2558. Warning (15706): Node "slave_ahb_hresp" is assigned to location or region, but does not exist in design
  2559. Warning (15706): Node "slave_ahb_hsel" is assigned to location or region, but does not exist in design
  2560. Warning (15706): Node "slave_ahb_hsize[0]" is assigned to location or region, but does not exist in design
  2561. Warning (15706): Node "slave_ahb_hsize[1]" is assigned to location or region, but does not exist in design
  2562. Warning (15706): Node "slave_ahb_hsize[2]" is assigned to location or region, but does not exist in design
  2563. Warning (15706): Node "slave_ahb_htrans[0]" is assigned to location or region, but does not exist in design
  2564. Warning (15706): Node "slave_ahb_htrans[1]" is assigned to location or region, but does not exist in design
  2565. Warning (15706): Node "slave_ahb_hwdata[0]" is assigned to location or region, but does not exist in design
  2566. Warning (15706): Node "slave_ahb_hwdata[10]" is assigned to location or region, but does not exist in design
  2567. Warning (15706): Node "slave_ahb_hwdata[11]" is assigned to location or region, but does not exist in design
  2568. Warning (15706): Node "slave_ahb_hwdata[12]" is assigned to location or region, but does not exist in design
  2569. Warning (15706): Node "slave_ahb_hwdata[13]" is assigned to location or region, but does not exist in design
  2570. Warning (15706): Node "slave_ahb_hwdata[14]" is assigned to location or region, but does not exist in design
  2571. Warning (15706): Node "slave_ahb_hwdata[15]" is assigned to location or region, but does not exist in design
  2572. Warning (15706): Node "slave_ahb_hwdata[16]" is assigned to location or region, but does not exist in design
  2573. Warning (15706): Node "slave_ahb_hwdata[17]" is assigned to location or region, but does not exist in design
  2574. Warning (15706): Node "slave_ahb_hwdata[18]" is assigned to location or region, but does not exist in design
  2575. Warning (15706): Node "slave_ahb_hwdata[19]" is assigned to location or region, but does not exist in design
  2576. Warning (15706): Node "slave_ahb_hwdata[1]" is assigned to location or region, but does not exist in design
  2577. Warning (15706): Node "slave_ahb_hwdata[20]" is assigned to location or region, but does not exist in design
  2578. Warning (15706): Node "slave_ahb_hwdata[21]" is assigned to location or region, but does not exist in design
  2579. Warning (15706): Node "slave_ahb_hwdata[22]" is assigned to location or region, but does not exist in design
  2580. Warning (15706): Node "slave_ahb_hwdata[23]" is assigned to location or region, but does not exist in design
  2581. Warning (15706): Node "slave_ahb_hwdata[24]" is assigned to location or region, but does not exist in design
  2582. Warning (15706): Node "slave_ahb_hwdata[25]" is assigned to location or region, but does not exist in design
  2583. Warning (15706): Node "slave_ahb_hwdata[26]" is assigned to location or region, but does not exist in design
  2584. Warning (15706): Node "slave_ahb_hwdata[27]" is assigned to location or region, but does not exist in design
  2585. Warning (15706): Node "slave_ahb_hwdata[28]" is assigned to location or region, but does not exist in design
  2586. Warning (15706): Node "slave_ahb_hwdata[29]" is assigned to location or region, but does not exist in design
  2587. Warning (15706): Node "slave_ahb_hwdata[2]" is assigned to location or region, but does not exist in design
  2588. Warning (15706): Node "slave_ahb_hwdata[30]" is assigned to location or region, but does not exist in design
  2589. Warning (15706): Node "slave_ahb_hwdata[31]" is assigned to location or region, but does not exist in design
  2590. Warning (15706): Node "slave_ahb_hwdata[3]" is assigned to location or region, but does not exist in design
  2591. Warning (15706): Node "slave_ahb_hwdata[4]" is assigned to location or region, but does not exist in design
  2592. Warning (15706): Node "slave_ahb_hwdata[5]" is assigned to location or region, but does not exist in design
  2593. Warning (15706): Node "slave_ahb_hwdata[6]" is assigned to location or region, but does not exist in design
  2594. Warning (15706): Node "slave_ahb_hwdata[7]" is assigned to location or region, but does not exist in design
  2595. Warning (15706): Node "slave_ahb_hwdata[8]" is assigned to location or region, but does not exist in design
  2596. Warning (15706): Node "slave_ahb_hwdata[9]" is assigned to location or region, but does not exist in design
  2597. Warning (15706): Node "slave_ahb_hwrite" is assigned to location or region, but does not exist in design
  2598. Warning (15706): Node "sys_ctrl_hseBypass" is assigned to location or region, but does not exist in design
  2599. Warning (15706): Node "sys_ctrl_hseEnable" is assigned to location or region, but does not exist in design
  2600. Warning (15706): Node "sys_ctrl_pllEnable" is assigned to location or region, but does not exist in design
  2601. Warning (15706): Node "sys_ctrl_sleep" is assigned to location or region, but does not exist in design
  2602. Warning (15706): Node "sys_ctrl_standby" is assigned to location or region, but does not exist in design
  2603. Warning (15706): Node "sys_ctrl_stop" is assigned to location or region, but does not exist in design
  2604. Warning (15706): Node "usb0_id" is assigned to location or region, but does not exist in design
  2605. Info (171121): Fitter preparation operations ending: elapsed time is 00:00:02
  2606. Info (170189): Fitter placement preparation operations beginning
  2607. Info (170190): Fitter placement preparation operations ending: elapsed time is 00:00:00
  2608. Info (170191): Fitter placement operations beginning
  2609. Info (170137): Fitter placement was successful
  2610. Info (170192): Fitter placement operations ending: elapsed time is 00:00:06
  2611. Info (128000): Starting physical synthesis optimizations for speed
  2612. Info (128002): Starting physical synthesis algorithm combinational resynthesis using boolean division
  2613. Info (128003): Physical synthesis algorithm combinational resynthesis using boolean division complete: estimated slack improvement of 0 ps
  2614. Info (128002): Starting physical synthesis algorithm logic replication
  2615. Info (128003): Physical synthesis algorithm logic replication complete: estimated slack improvement of 0 ps
  2616. Info (128001): Physical synthesis optimizations for speed complete: elapsed time is 00:00:00
  2617. Info (170193): Fitter routing operations beginning
  2618. Info (170195): Router estimated average interconnect usage is 0% of the available device resources
  2619. Info (170196): Router estimated peak interconnect usage is 0% of the available device resources in the region that extends from location X47_Y0 to location X58_Y11
  2620. Info (170194): Fitter routing operations ending: elapsed time is 00:00:03
  2621. Info (11888): Total time spent on timing analysis during the Fitter is 0.73 seconds.
  2622. Info (334003): Started post-fitting delay annotation
  2623. Info (334004): Delay annotation completed successfully
  2624. Info (334003): Started post-fitting delay annotation
  2625. Info (334004): Delay annotation completed successfully
  2626. Info (11218): Fitter post-fit operations ending: elapsed time is 00:00:01
  2627. Warning (171167): Found invalid Fitter assignments. See the Ignored Assignments panel in the Fitter Compilation Report for more information.
  2628. 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.
  2629. Info (169178): Pin PIN_HSE uses I/O standard 3.3-V LVTTL at AB17
  2630. Info (169178): Pin SPI0_CSN uses I/O standard 3.3-V LVTTL at AD12
  2631. Info (169178): Pin SPI0_SCK uses I/O standard 3.3-V LVTTL at AE13
  2632. Info (169178): Pin UART0_UARTTXD uses I/O standard 3.3-V LVTTL at AC15
  2633. Info (169178): Pin BAUD_RATE uses I/O standard 3.3-V LVTTL at F10
  2634. Info (169178): Pin GPIO4_1 uses I/O standard 3.3-V LVTTL at AE14
  2635. Info (169178): Pin GPIO4_2 uses I/O standard 3.3-V LVTTL at AB13
  2636. Info (169178): Pin SPI0_SI_IO0 uses I/O standard 3.3-V LVTTL at AA15
  2637. Info (169178): Pin TEST_SINGLE uses I/O standard 3.3-V LVTTL at H5
  2638. Info (169178): Pin UART1_RX uses I/O standard 3.3-V LVTTL at AG26
  2639. Info (169178): Pin UART1_TX uses I/O standard 3.3-V LVTTL at B3
  2640. Info (169178): Pin so_io1 uses I/O standard 3.3-V LVTTL at AB16
  2641. Info (169178): Pin UART0_UARTRXD uses I/O standard 3.3-V LVTTL at AG12
  2642. Info (169178): Pin PIN_HSI uses I/O standard 3.3-V LVTTL at Y2
  2643. Info (169178): Pin PLL_CLKIN uses I/O standard 3.3-V LVTTL at J1
  2644. Warning (169064): Following 5 pins have no output enable or a GND or VCC output enable - later changes to this connectivity may change fitting results
  2645. Info (169065): Pin BAUD_RATE has a permanently disabled output enable
  2646. Info (169065): Pin TEST_SINGLE has a permanently disabled output enable
  2647. Info (169065): Pin UART1_RX has a permanently disabled output enable
  2648. Info (169065): Pin UART1_TX has a permanently disabled output enable
  2649. Info (169065): Pin so_io1 has a permanently disabled output enable
  2650. Info (144001): Generated suppressed messages file D:/LYW/WBJW/CODE/NEW_TSB_3.0/AG32/9102_BOOT/logic/quartus_logs/fpga_boot.fit.smsg
  2651. Info: Quartus II 64-Bit Fitter was successful. 0 errors, 476 warnings
  2652. Info: Peak virtual memory: 5437 megabytes
  2653. Info: Processing ended: Sat May 09 16:12:18 2026
  2654. Info: Elapsed time: 00:00:18
  2655. Info: Total CPU time (on all processors): 00:00:23
  2656. +----------------------------+
  2657. ; Fitter Suppressed Messages ;
  2658. +----------------------------+
  2659. The suppressed messages can be found in D:/LYW/WBJW/CODE/NEW_TSB_3.0/AG32/9102_BOOT/logic/quartus_logs/fpga_boot.fit.smsg.