home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s200 / 1.ddi / ABEL.EXE / ABELERR.MNU < prev    next >
Encoding:
Text File  |  1991-02-13  |  113.6 KB  |  4,136 lines

  1. *Global Keys,A
  2. Global Keys
  3.     <<F1>>          Context sensitive, multi-level help    
  4.     <<ESC>>         Toggles between Editor Window and Menu Bar  
  5.     <<^L>>          Redraw screen
  6.     <<Alt-l>>etter  Pops up menu with highlighted character that
  7.                 matches letter
  8. *==Errors Help==,A
  9. *--AHDL2PLA--,A
  10. *1000,A
  11. Command Error 1000: You must specify an ABEL-HDL source file.
  12.  
  13. An ABEL-HDL source file is expected as the input to AHDL2PLA.
  14. The file should be specified as the first argument to the
  15. AHDL2PLA program.
  16. *1001,A
  17. Syntax Error 1001: String expected
  18.  
  19. A string argument was expected in the indicated location in the
  20. source file. A string is a sequence of one or more characters
  21. delimited by ' (single-quote) or ` (back-quote)
  22. *1002,A
  23. Logical Error 1002: Source line length exceeds nn chars.
  24.  
  25. Individual lines of an ABEL-HDL source file can not exceed the
  26. indicated number of characters.
  27. *1003,A
  28. Fatal Error 1003: Unable to open input file 'xxxx'.
  29.  
  30. The indicated file could not be opened by AHDL2PLA. If the
  31. indicated file exists, check to make sure that it has the
  32. appropriate file protection settings to enable you to access it.
  33. *1004,A
  34. Warning 1004: FLAGS statement obsolete - mapping old flags to
  35. new options.
  36.  
  37. The FLAGS statement, used in previous versions of ABEL, has been
  38. replaced with the OPTIONS statement in ABEL-HDL. In most cases the
  39. old-style flags specified in a FLAGS statement will be
  40. automatically mapped to the proper options.
  41. *1005,A
  42. Syntax Error 1005: Identifier length exceeds nn chars.
  43.  
  44. Identifiers (module, device, signal and constant names) must not
  45. exceed the indicated length.
  46. *1006,A
  47. Syntax Error 1006: Undefined token
  48.  
  49. An unrecognized sequence of non-alphabetic characters was
  50. encountered in the source file.
  51. *1007,A
  52. Syntax Error 1007: String length exceeds nn chars.
  53.  
  54. A string was encountered that exceeds the maximum allowable number
  55. of characters. This is usually an indication that the terminating
  56. string delimiter was unintentionally omitted.
  57. *1008,A
  58. Syntax Error 1008: Only ^b, ^o, ^d or ^h radix allowed.
  59.  
  60. The ^ (circumflex) character was encountered in the source file
  61. with an unknown radix character immediately following it.
  62. *1009,A
  63. Syntax Error 1009: Can't have letters imbedded in a number.
  64.  
  65. An incorrect sequence of numeric and alphabetic characters was
  66. encountered in the source file.
  67. *1010,A
  68. Logical Error 1010: Numeric overflow
  69.  
  70. An operation performed on constant values resulted in a number
  71. larger than allowable.
  72. *1011,A
  73. Syntax Error 1011: Actual argument length exceeds 35 chars.
  74.  
  75. An actual argument (the text passed as an argument to a macro
  76. or module) exceeds the indicated maximum number of characters.
  77. *1012,A
  78. Syntax Error 1012: No more than nn arguments are declared.
  79.  
  80. The macro or module being processed has only the indicated
  81. number of dummy arguments declared, and the macro or module was
  82. called with too many actual arguments.
  83. *1013,A
  84. Warning 1013: Attribute 'FEED_OR' is obsolete - substituting
  85. '.D' instead.
  86.  
  87. The 'FEED_OR' signal attribute was used in previous versions of
  88. ABEL to specify the feedback configuration for the indicated
  89. signal. In ABEL-HDL, the feedback path is specified as a part of
  90. the related design description by using dot extensions. The
  91. appropriate dot extension to indicated the combinatorial feedback
  92. path from a registered output is typically '.D', so this dot
  93. extension will be appended to all affected signals when they are
  94. referenced as inputs.
  95. *1014,A
  96. Warning 1014: Attribute 'FEED_PIN' is obsolete - substituting
  97. '.PIN' instead.
  98.  
  99. The 'FEED_PIN' signal attribute was used in previous versions of
  100. ABEL to specify the feedback configuration for the indicated
  101. signal. In ABEL-HDL, the feedback path is specified as a part of
  102. the related design description by using dot extensions. The
  103. appropriate dot extension to indicated the feedback path from an
  104. output pin is '.PIN', so this dot extension will be appended to
  105. all affected signals when they are referenced as inputs.
  106. *1015,A
  107. Warning 1015: Attribute 'FEED_REG' is obsolete - substituting
  108. '.FB' instead.
  109.  
  110. The 'FEED_REG' signal attribute was used in previous versions of
  111. ABEL to specify the feedback configuration for the indicated
  112. signal. In ABEL-HDL, the feedback path is specified as a part of
  113. the related design description by using dot extensions. The
  114. appropriate dot extension to indicated the registered feedback
  115. path is typically '.FB', so this dot extension will be appended to
  116. all affected signals when they are referenced as inputs.
  117. *1016,A
  118. Fatal Error 1016: Unable to open output file 'xxxx'.
  119.  
  120. The indicated file could not be opened. This can indicated a full
  121. disk drive, invalid path, or file protection problems.
  122. *1017,A
  123. Syntax Error 1017: ENDCASE expected
  124.  
  125. The CASE transition statement must be terminated with an ENDCASE
  126. statement.
  127. *1018,A
  128. Syntax Error 1018: No register type specified for 'xxxx'
  129. - please use ISTYPE.
  130.  
  131. The indicated signal has not been declared with a register type. If
  132. no device and pin number have been declared, you should use the
  133. ISTYPE statement to specify that the signal is either combinatorial
  134. (ISTYPE 'COM') or registered (ISTYPE 'REG' or ISTYPE 'REG_X'
  135. where X is either D, T, SR, JK, JKD or G).
  136. *1019,A
  137. Syntax Error 1019: Keyword 'xxxx' expected
  138.  
  139. The indicated keyword was expected in the source file.
  140. *1020,A
  141. Syntax Error 1020: Identifier expected
  142.  
  143. An identifier (module, device, signal or constant name) was
  144. expected in the source file.
  145. *1021,A
  146. Syntax Error 1021: Undefined compiler directive '@xxxx'.
  147.  
  148. An '@' sign was encountered that was followed by an unknown
  149. directive name.
  150. *1022,A
  151. Syntax Error 1022: Special constant must end with a '.'.
  152.  
  153. Special constants are delimited by '.' (period) characters.
  154. This Error can also indicated incorrect usage of dot extensions,
  155. which are prefixed by '.' characters.
  156. *1023,A
  157.  
  158. Syntax Error 1023: Undefined special constant 'xxxx'.
  159.  
  160. An unknown special constant was found delimited by '.' (period)
  161. characters.
  162. *1024,A
  163. Syntax Error 1024: Label expected
  164.  
  165. A label was expected in the source file. A label is a sequence of
  166. alpha-numeric characters that does not begin with a number, and is
  167. not an ABEL-HDL reserved word (keyword).
  168. *1025,A
  169.  
  170. Syntax Error 1025: Can't use ':=' operator with dot extension
  171. signal 'xxxx'.
  172.  
  173. The ':=' (registered assignment) operator is used to indicated a
  174. pin-to-pin relationship between an input expression and a
  175. corresponding registered output pin. Dot extensions signals
  176. are inherently combinatorial, and should therefore be described
  177. with the '=' (unclocked assignment) operator.
  178. *1026,A
  179. Syntax Error 1026: ';' expected
  180.  
  181. A semicolon was expected in the source file.
  182. *1027,A
  183. Syntax Error 1027: Module label doesn't match 'xxxx'.
  184.  
  185. The END statement was followed by a module name that does not
  186. match the module name specified in the previous MODULE statement.
  187. *1028,A
  188. Syntax Error 1028: EQUATIONS, STATE_DIAGRAM, TRUTH_TABLE or END
  189. expected.
  190.  
  191. A keyword was encountered out of place in the source file. This can
  192. indicate any number of syntax problems, including misplaced or
  193. missing semicolons or parenthesis, unbalanced IF-THEN, WHEN-THEN or
  194. CASE statements, or earlier syntax problems.
  195. *1029,A
  196. Syntax Error 1029: PIN, NODE, DEVICE, ISTYPE, MACRO or '='
  197. expected.
  198.  
  199. A label, keyword or operator was encountered out of place in the
  200. declarations section of the source file. This Error will often
  201. result if a comma is omitted from a list of identifiers.
  202. *1030,A
  203. Warning 1030: Inconsistency in number of parameters - declaration
  204. ignored.
  205.  
  206. A constant declaration statement had an unbalanced number of items
  207. on the right and left side of the '=' (constant assignment)
  208. operator.
  209. *1031,A
  210. Syntax Error 1031: Undefined label 'xxxx'.
  211.  
  212. A label was referenced that was not declared in a declarations
  213. section of the source file.
  214. *1032,A
  215. Syntax Error 1032: Signal not allowed.
  216.  
  217. A signal was not allowed as an operand or argument in the
  218. indicated expression.
  219. *1033,A
  220. Syntax Error 1033: Max of nn elements in set was exceeded.
  221.  
  222. Set widths are restricted to 32 elements.
  223. *1034,A
  224. Syntax Error 1034: ']' expected
  225.  
  226. A set was not terminated with a ']' (right bracket) delimiter
  227. character.
  228. *1035,A
  229. Syntax Error 1035: Illegal operation on special constant.
  230.  
  231. Special constants are not allowed as operands in the indicated
  232. expression.
  233. *1036,A
  234.  
  235. Syntax Error 1036: Can't compare set with nn members to one with
  236. nn members.
  237.  
  238. Set widths must match when performing operations on two sets.
  239. *1037,A
  240. Syntax Error 1037: ')' expected
  241.  
  242. The ')' (right parenthesis) character was expected as a delimiter.
  243. *1038,A
  244. Syntax Error 1038: Pin number, ISTYPE or semicolon expected.
  245.  
  246. A signal (PIN or NODE) declaration was not properly terminated.
  247. *1039,A
  248. Warning 1039: Label 'xxxx' is already defined - declaration ignored.
  249.  
  250. The indicated label was already used in a previous declaration. The
  251. new declaration will be ignored. This can indicate a missing or
  252. misplaced EQUATIONS keyword.
  253. *1040,A
  254. Syntax Error 1040: Number expected
  255.  
  256. A number was expected in the source file. Numbers can be prefixed
  257. by a radix specification, or can be specified as a set of binary
  258. values.
  259. *1041,A
  260. Syntax Error 1041: Keyword 'xxxx' is out of context.
  261.  
  262. The indicated keyword was used in an incorrect manner.
  263. *1042,A
  264. Logical Error 1042: Premature end of source file.
  265.  
  266. The end of the source file was encountered before an END
  267. statement was found.
  268. *1043,A
  269. Warning 1043: ':=' should not be used with output type 'xxxx'.
  270.  
  271. The ':=' (clocked assignment) operator is intended for use with
  272. D-type flip-flops only. For alternate flip-flop types, you should
  273. use the '=' (combinatorial assignment) operator in conjunction
  274. with either a '.T', '.J', '.K', '.S', '.R', or other register
  275. input port dot extension.
  276. *1045,A
  277. Warning 1045: 'INVERT' or 'BUFFER' not specified for 'xxxx' -
  278. output uncertain.
  279.  
  280. An output signal has been described using a register input port
  281. dot extension ('.D', '.T', '.J', '.K', '.S', or '.R') but the
  282. associated output signal has not been declared with an 'INVERT'
  283. or 'BUFFER' attribute. Since there is no information about the
  284. existence of an inverter between the register and the associated
  285. output pin, the actual value observed on that pin is uncertain.
  286. *1046,A
  287. Syntax Error 1046: Cannot operate on signal 'xxxx'.
  288.  
  289. The indicated signal was used in an expression in which only
  290. numbers or constant values are allowed.
  291. *1047,A
  292. Syntax Error 1047: Signal or .X. expected
  293.  
  294. A declared signal (pin or node) or the special constant '.X.' was
  295. expected in the source file.
  296. *1048,A
  297. Syntax Error 1048: '=' or ':=' expected
  298.  
  299. An assignment operator was expected in the source file.
  300. *1049,A
  301. Syntax Error 1049: Expression element expected
  302.  
  303. An expression was expected in the source file. Expressions
  304. are composed of one or more signals, sets, numbers or special
  305. constants operated on by valid ABEL-HDL operators. Expressions
  306. may or may not be enclosed in a pair of parenthesis.
  307. *1050,A
  308. Warning 1050: 'INVERT' or 'BUFFER' not specified for 'xxxx' -
  309. feedback uncertain.
  310.  
  311. Feedback from a registered signal has been described using the '.Q'
  312. dot extension, but the associated output signal has not been
  313. declared with an 'INVERT' or 'BUFFER' attribute. Since there is no
  314. information about the existence of an inverter between the register
  315. and the associated output pin, the relationship between the value
  316. observed on that pin and the value fed back from the register is
  317. uncertain.
  318. *1051,A
  319. Syntax Error 1051: GOTO, IF or CASE expected
  320.  
  321. A state transition (GOTO, IF-THEN-ELSE, or CASE) statement was
  322. expected.
  323. *1052,A
  324. Syntax Error 1052: THEN expected
  325.  
  326. The THEN portion of an IF-THEN-ELSE statement was omitted.
  327. *1053,A
  328. Syntax Error 1053: Signal 'xxxx' is combinatorial.
  329.  
  330. The ':=' (clocked assignment) operator was used to describe a
  331. signal that was declared as combinatorial.
  332. *1054,A
  333. Syntax Error 1054: '(' expected
  334.  
  335. A '(' (left parenthesis) character was expected as a delimiter.
  336. *1055,A
  337. Syntax Error 1055: '->>' expected
  338.  
  339. The '->>' operator was expected to delimit the input and output
  340. portions of a truth table or test vector header or entry.
  341. *1056,A
  342. Logical Error 1056: Extension 'xxxx' is not legal for node 'xxxx'.
  343.  
  344. The indicated dot extension is not appropriate for the indicated
  345. node.
  346. *1057,A
  347. Syntax Error 1057: Can't map set onto a non-set element.
  348.  
  349. A set was specified in a test vector where a single-bit value was
  350. expected.
  351. *1058,A
  352. Syntax Error 1058: Special constant not allowed.
  353.  
  354. Special constants are not allowed in the current context.
  355. *1059,A
  356. Syntax Error 1059: Undefined operation on sets.
  357.  
  358. Sets may not be used as operands of '>>>' (shift right),
  359. '<<<' (shift left), '*' (multiply), '/' (divide) or '%' (modulo)
  360. operators.
  361. *1060,A
  362.  
  363. Syntax Error 1060: Can't map set onto a different sized set.
  364.  
  365. Set widths must match when performing operations on two sets, or
  366. when using nested sets in truth tables or test vectors.
  367. *1061,A
  368. Warning 1061: No output type specified for 'xxxx' - please use
  369. ISTYPE.
  370.  
  371. You have used the indicated signal as an output, but have not
  372. declared whether it is combinatorial or registered.
  373. *1062,A
  374. Warning 1062: Extension 'xxxx' may not be legal for signal
  375. 'xxxx'.
  376.  
  377. You have used a dot extension that does not match the known dot
  378. extensions for the output type declared for the indicated signal.
  379. *1063,A
  380. Syntax Error 1063: Dummy argument 'xxxx' not recognized.
  381.  
  382. You have indicated a dummy argument (by prefixing a label with the
  383. '?' character) that does not match the dummy arguments declared in
  384. the macro or module argument list.
  385. *1064,A
  386. Syntax Error 1064: Signal number for 'xxxx' is too large.
  387.  
  388. You have specified a very large pin or node number.
  389. *1065,A
  390. Syntax Error 1065: Pin number nn is not defined for this device.
  391.  
  392. You have specified a pin number that is undefined for the declared
  393. device.
  394. *1066,A
  395. Syntax Error 1066: Node number nn is not defined for this device.
  396.  
  397. You have specified a node number that is undefined for the declared
  398. device.
  399. *1067,A
  400.  
  401. Syntax Error 1067: Only one label allowed.
  402.  
  403. You have specified a list of labels in a macro definition. Only one
  404. label is allowed for each macro.
  405. *1068,A
  406. Syntax Error 1068: Block expected
  407.  
  408. A block was expected following a macro keyword or directive. A
  409. block is a section of ABEL-HDL source statements enclosed by
  410. braces.
  411. *1069,A
  412. Syntax Error 1069: Closing '}' of block not found.
  413.  
  414. A terminating '}' (right brace) delimiter was not found in the
  415. source file.
  416. *1070,A
  417. Warning 1070: Pin number nn is already declared as 'xxxx'.
  418.  
  419. You have declared the same pin number for two different named
  420. signals.
  421. *1071,A
  422. Syntax Error 1071: Closing ''' of string not found.
  423.  
  424. The terminating ''' (single quote) character was omitted from a
  425. string. This Error can occur if a single quote (or back quote)
  426. character is imbedded in a string without being prefixed by a '\'
  427. (backslash) character.
  428. *1072,A
  429. Syntax Error 1072: ':+:' or ':*:' expected
  430.  
  431. You have specified @ALTERNATE (use alternate operators) and have
  432. incorrectly specified an XOR or XNOR operation.
  433. *1073,A
  434. Syntax Error 1073: Constant label expected
  435.  
  436. The @CONST directive requires a constant label. This label must not
  437. have been previously declared (as a signal, macro or other
  438. identifier) except that it can be used in previous @CONST directive
  439. statement.
  440. *1074,A
  441. Syntax Error 1074: '=' expected
  442.  
  443. The '=' (assignment operator) was omitted from an @CONST directive
  444. or from a fuse assignment statement.
  445.  
  446. Syntax Error 1075: Undefined operation on signal.
  447.  
  448. A signal identifier is not legal in the current context.
  449. *1076,A
  450. Syntax Error 1076: Number is too large.
  451.  
  452. Numbers (either literal values or values produced by complex
  453. expressions) must not exceed the maximum size of 32 bits
  454. (unsigned).
  455. *1077,A
  456. Syntax Error 1077: ':>>' or '->>' expected
  457.  
  458. The ':>>' or '->>' operator was expected to delimit the input and
  459. output portions of a test vector header or entry line.
  460. *1078,A
  461. Syntax Error 1078: ':>>' expected
  462.  
  463. The ':>>' operator was expected in a test vector entry line to
  464. match the ':>>' operator found in the test vector header.
  465. *1079,A
  466. Syntax Error 1079: Radix nn is not one of 2, 8, 10 or 16.
  467.  
  468. The radix value specified in a @RADIX statement must be either 2
  469. (binary), 8 (octal), 10 (decimal) or 16 (hexadecimal).
  470. *1080,A
  471. Syntax Error 1080: nn actual arguments expected
  472.  
  473. A macro or module was invoked with an incorrect number of actual
  474. arguments.
  475. *1081,A
  476. Syntax Error 1081: Dummy argument expected
  477.  
  478. The '?' character indicates that the following sequence
  479. of characters is a dummy argument. The Error indicates that the
  480. dummy argument label does not match any of the dummy arguments
  481. listed in the macro or module declaration.
  482. *1082,A
  483. Syntax Error 1082: Digit not in radix nn.
  484.  
  485. You have specified a radix value less than 10 (decimal) and have
  486. used a digit that is not legal for that number system.
  487. *1084,A
  488. Warning 1084: Unrecognized attribute 'xxxx' - ignored.
  489.  
  490. The attribute string specified in an ISTYPE statement was not
  491. recognized as a valid signal attribute.
  492. *1085,A
  493. Syntax Error 1085: 'xxxx' attribute not allowed on this pin.
  494.  
  495. The specified attribute is not legal for the device and pin or node
  496. number indicated, or the attribute conflicts with a previous
  497. attribute specified for the same signal.
  498. *1086,A
  499. Warning 1086: Signal 'xxxx' has not been declared as combinatorial.
  500.  
  501. You have written a combinatorial function for the indicated signal,
  502. but have not specified that the signal is combinatorial (ISTYPE
  503. 'COM').
  504. *1087,A
  505. Warning 1087: Signal 'xxxx' has not been declared as registered.
  506.  
  507. You have written a registered (pin-to-pin) function for the
  508. indicated signal, but have not declared the signal as registered
  509. (ISTYPE 'REG' or ISTYPE 'REG_X' where X is a register type).
  510. *1091,A
  511. Logical Error 1091: nn actual arguments specified on command line.
  512.  
  513. The number of actual arguments specified on the AHDL2PLA command
  514. line exceeds the number of dummy arguments specified in the MODULE
  515. statement.
  516. *1092,A
  517. Syntax Error 1092: Use '#' for OR instead of '|'.
  518.  
  519. The '|' operator (used in some programming languages for a bitwise
  520. OR) is not used in ABEL-HDL. Instead you should use the '#'
  521. operator.
  522. *1093,A
  523. Syntax Error 1093: 'xxxx' undefined, maybe 'xxxx' was meant.
  524.  
  525. An identifier was encountered that is undefined, but a similar
  526. identifier (one that matches if upper and lower case are ignored)
  527. exists in the design.
  528. *1094,A
  529. Syntax Error 1094: No operators allowed in this context.
  530.  
  531. You have attempted to use a complex expression (one containing
  532. operators) when only signals, numbers or special constants are
  533. allowed. This Error most frequently occurs when dot extensions
  534. are applied to complex expressions.
  535. *1096,A
  536. Logical Error 1096: Arithmetic error
  537.  
  538. A divide by zero or similar situation was encountered when
  539. evaluating an expression.
  540. *1098,A
  541. Syntax Error 1098: Negative declaration not allowed.
  542.  
  543. Negative (active-low) declarations are only allowed in PIN and
  544. NODE statements.
  545. *1099,A
  546. Syntax Error 1099: Invalid set range.
  547.  
  548. A range (specified with the '..' operator) is bounded by
  549. incompatible signals or numbers. Ranges must be specified that will
  550. result in 32 or fewer set elements.
  551. *1100,A
  552. Syntax Error 1100: Bad element 'xxxx' in range.
  553.  
  554. The expansion of a range expression resulted in the creation of
  555. a previously unknown (undeclared) element.
  556. *1101,A
  557. Syntax Error 1101: Fuse number expected
  558.  
  559. A number was expected that corresponds to a fuse location in the
  560. previously declared device.
  561. *1102,A
  562. Syntax Error 1102: Fuse value 1 or 0 expected
  563.  
  564. A fuse value was expected. A value of 1 indicates an intact fuse,
  565. and a value of 1 indicates a programmed (blown) fuse.
  566. *1103,A
  567. Syntax Error 1103: Illegal nested set in state diagram header.
  568.  
  569. A state diagram state register must be specified as a set of
  570. signals, and the set must not be nested (contain other sub-sets).
  571. *1104,A
  572. Syntax Error 1104: Dot extension 'xxxx' not legal in this context.
  573.  
  574. The indicated dot extension is either unrecognized, or was used in
  575. an incorrect manner. Dot extensions can only be applied to signals
  576. or sets if signals.
  577. *1105,A
  578. Syntax Error 1105: Signal label expected
  579.  
  580. An identifier was used that is not a previously declared signal,
  581. and a signal was expected.
  582. *1109,A
  583. Syntax Error 1109: Register type of 'xxxx' does not match other
  584. set elements.
  585.  
  586. State diagrams require matching register types. The state register
  587. set specified contains signals of differing register types.
  588. *1110,A
  589. Syntax Error 1110: Pin nn (VCC) can't be used as input.
  590.  
  591. You have specified a device and pin number combination that cannot
  592. be used as an input in your design.
  593. *1111,A
  594. Syntax Error 1111: Pin nn (GND) can't be used as input.
  595.  
  596. You have specified a device and pin number combination that cannot
  597. be used as an input in your design.
  598. *1113,A
  599. Warning 1113: ENABLE keyword obsolete - use .OE extension instead.
  600.  
  601. The ENABLE keyword is no longer supported in ABEL-HDL. Instead, you
  602. should use the '.OE' dot extension to indicate a three-state
  603. output.
  604. *1114,A
  605. Syntax Error 1114: 'xxxx' attribute not allowed for state
  606. registers.
  607.  
  608. The indicated attribute is illegal for describing state register
  609. types. You must specify either 'COM', 'REG', or 'REG_X' where X is
  610. a valid register type.
  611. *1116,A
  612. Syntax Error 1116: Multiple attribute list not allowed in this
  613. context.
  614.  
  615. You have used the '=' operator to specify signal attributes
  616. for signals that have not been assigned pins. You should use the
  617. 'ISTYPE' attribute to assign attributes instead of the '='
  618. operator.
  619. *1120,A
  620. Syntax Error 1120: Only one device allowed.
  621.  
  622. Multiple device declarations are no longer supported in ABEL-HDL.
  623. Instead, you should use the PLA splitter utility to split a large
  624. design into multiple devices.
  625. *1121,A
  626. Syntax Error 1121: Device declaration must be made before signal
  627. declarations.
  628.  
  629. If a device declaration is made in the source file, it must be
  630. made before any signal declarations.
  631. *1122,A
  632. Logical Error 1122: File name 'xxxx.xxx' too long.
  633.  
  634. The indicated file name is too long for the operating system.
  635. *1124,A
  636. Warning 1124: 'INVERT' or 'BUFFER' not specified for 'xxxx' -
  637. assuming 'buffer'.
  638.  
  639. You have not specified whether the indicated output signal will
  640. have an inversion between the state register and the associated
  641. output pin. No inversion will be assumed, resulting in possibly
  642. incorrect operation if the design is implemented in a device with
  643. inverting outputs.
  644. *1126,A
  645. Syntax Error 1126: Can't use ':=' operator with dot extensions.
  646.  
  647. The ':=' (clocked assignment) operator is used to describe the
  648. operation of an registered output pin. If dot extensions are used,
  649. you should use the '=' assignment operator, since dot extensions
  650. (including register input ports) are inherently combinatorial.
  651. *1128,A
  652. Syntax Error 1128: Can't have operators in state register.
  653.  
  654. The state register set must consist of a set of signals, with no
  655. complex operators.
  656. *1129,A
  657. Syntax Error 1129: Can't expand expression - possibly recursive
  658. definition.
  659.  
  660. The AHDL2PLA compiler has detected a recursive constant
  661. declaration. Check to make sure you have not referenced the same
  662. identifier on both sides of the '=' operator.
  663. *1130,A
  664. Syntax Error 1130: Missing set element.
  665.  
  666. Set elements can consist of signals, numbers, special constants,
  667. sets or expressions and are separated by commas. One of these items
  668. was expected in the set.
  669. *1131,A
  670. Syntax Error 1131: Missing set range element.
  671.  
  672. The '..' (set range) operator was used with no second boundary
  673. element.
  674. *1132,A
  675. Syntax Error 1132: Keyword IN no longer supported.
  676.  
  677. Multiple device declarations and corresponding device-specific
  678. sections are no longer supported in ABEL-HDL. Instead, you should
  679. use the PLA splitter utility to split a large design into multiple
  680. devices.
  681. *1133,A
  682. Syntax Error 1133: Signal 'xxxx' already defined as type 'INVERT'.
  683.  
  684. You have specified the 'BUFFER' attribute for a signal that was
  685. previously declared as 'INVERT'.
  686. *1134,A
  687. Syntax Error 1134: Signal 'xxxx' already defined as type 'BUFFER'.
  688.  
  689. You have specified the 'INVERT' attribute for a signal that was
  690. previously declared as 'BUFFER'.
  691. *1135,A
  692. Fatal Error 1135: Unknown Error
  693. *--PLAopt--,A
  694. *2001,A
  695. Fatal Error 2001: Requires an input file with a .TTn extension.
  696.  
  697. Plaopt requires input files with names such as m6809a.tt1 or
  698. foo.tt4. The default output file would be m6809a.tt2 or foo.tt5.
  699. *2002,A
  700. Fatal Error 2002: Input and output file names are the
  701. same 'file_name'.
  702.  
  703. The input and output files must have different names.
  704. *2003,A
  705. Fatal Error 2003: Can't open input file 'file_name'.
  706.  
  707. Input file not found.
  708. *2004,A
  709. Fatal Error 2004: AUXPLA and Output file names have the same
  710. 'file_name'.
  711.  
  712. The AUXPLA file from the input PLA file has the same name as
  713. the output file. The AUXPLA is created when the @DCSET is used
  714. in an ABEL source file.
  715. *2005,A
  716. Fatal Error 2005: Latte failed on 'file_name'.
  717.  
  718. While producing the @DCSET offsets, the espresso program
  719. (latte) was not found or produced an internal error.
  720. *2006,A
  721. Fatal Error: Can't open input file 'file_name'.
  722.  
  723. While processing the @DCSET, PLAOpt could not open an working file.
  724. *2007,A
  725. Fatal Error 2007: Can't open AUXPLA file 'file_name'.
  726.  
  727. While processing the @DCSET, PLAOpt could not open the AUXPLA file.
  728. *2008,A
  729. Fatal Error 2008: Can't open output file 'file_name'.
  730.  
  731. While processing the @DCSET, PLAOpt could not open the output file.
  732. *2009,A
  733. Fatal Error 2009: Can't open input file 'file_name'.
  734.  
  735. While running '-reduce none', PLAOpt could not open the file.
  736. *2010,A
  737. Fatal Error 2010: Can't open output file 'file_name'.
  738.  
  739. While running '-reduce none', PLAOpt could not open the file.
  740. *2011,A
  741. Fatal Error 2011: Latte failed on 'file_name'.
  742.  
  743. While running '-reduce group fixed', the espresso program
  744. (latte) was not found or produced an internal error.
  745. *2012,A
  746. Fatal Error 2012: Latte failed on 'file_name'.
  747.  
  748. While running '-reduce group choose', the espresso program
  749. (latte) was not found or produced an internal error.
  750. *2013,A
  751. Fatal Error 2013: Can't open input file 'file_name'.
  752.  
  753. While running '-reduce group choose', PLAOpt could not open
  754. the file.
  755. *2014,A
  756. Fatale Error 2014: Can't open output file 'file_name'.
  757.  
  758. While running '-reduce group choose', PLAOpt could not open
  759. the file.
  760. *2015,A
  761. Fatal Error 2015: Latte (on-set) failed on 'file_name'.
  762.  
  763. While running '-reduce bypin fixed', the espresso program
  764. (latte) was not found or produced an internal error.
  765. *2016,A
  766. Fatal Error 2016: Can't open input file 'file_name'.
  767.  
  768. While running '-reduce bypin fixed', PLAOpt could not open
  769. the file.
  770. *2017,A
  771. Fatal Error 2017: Can't open output file 'file_name'.
  772.  
  773. While running '-reduce bypin fixed', PLAOpt could not open
  774. the file.
  775. *2019,A
  776. Fatal Error 2019: Latte (on-set) failed on 'file_name'.
  777.  
  778. While running '-reduce bypin choose', the espresso program
  779. (latte) was not found or produced an internal error.
  780. *2020,A
  781. Fatal Error 2020: Latte (off-set) failed on 'file_name'.
  782.  
  783. While running '-reduce bypin choose', the espresso program
  784. (latte) was not found or produced an internal error.
  785. *2021,A
  786. Fatal Error 2021: Can't open input file 'file_name'.
  787.  
  788. While running '-reduce bypin choose', PLAOpt could not open
  789. the file.
  790. *2022,A
  791. Fatal Error 2022: Can't open input file 'file_name'.
  792.  
  793. While running '-reduce bypin choose', PLAOpt could not open
  794. the file.
  795. *2023,A
  796. Fatal Error 2023: Can't open output file 'file_name'.
  797.  
  798. While running '-reduce bypin choose', PLAOpt could not open
  799. the file.
  800. *2024,A
  801. Fatal Error 2024: Latte (on-set) failed on 'file_name'.
  802.  
  803. While running '-reduce dt', the espresso program (latte)
  804. was not found or produced an internal error.
  805. *2025,A
  806. Fatal Error 2025: Latte (off-set) failed on 'file_name'.
  807.  
  808. While running '-reduce dt', the espresso program (latte)
  809. was not found or produced an internal error.
  810. *2026,A
  811. Fatal Error 2026: Can't open input file 'file_name'.
  812.  
  813. While running '-reduce dt', PLAOpt could not open the file.
  814. *2027,A
  815. Fatal Error 2027: Design must use D or T flip flops.
  816.  
  817. The ABEL design must use the .D or .T detailed equations.
  818. *2028,A
  819. Fatal Error 2028: Can't open output file 'file_name'.
  820.  
  821. While running '-reduce dt', PLAOpt could not open the file.
  822. *2029,A
  823. Fatal Error 2029: Can't open input file 'file_name'.
  824.  
  825. While running '-reduce dt', PLAOpt could not open the file.
  826. *2030,A
  827. Fatal Error 2030: Can't open output file 'file_name'.
  828.  
  829. While running '-reduce dt', PLAOpt could not open the file.
  830. *2031,A
  831. Fatal Error 2031: Latte failed on 'file_name'.
  832.  
  833. While running '-reduce dt', the espresso program (latte)
  834. was not found or produced an internal error.
  835. *2032,A
  836. Fatal Error 2032: Latte failed on 'file_name'.
  837.  
  838. While running '-reduce dt', the espresso program (latte)
  839. was not found or produced an internal error.
  840. *2033,A
  841. Fatal Error 2033: Can't open input file 'file_name'.
  842.  
  843. While running '-reduce dt', PLAOpt could not open the file.
  844. *2034,A
  845. Fatal Error 2034: Can't open input file 'file_name'.
  846.  
  847. While running '-reduce dt', PLAOpt could not open the file.
  848. *2035,A
  849. Fatal Error 2035: Can't open output file 'file_name'.
  850.  
  851. While running '-reduce dt', PLAOpt could not open the file.
  852. *2036,A
  853. Fatal Error 2036: Latte failed on 'file_name'.
  854.  
  855. While running '-reduce dt', the espresso program (latte)
  856. was not found or produced an internal error.
  857. *2037,A
  858. Fatal Error 2037: Latte failed on 'file_name'.
  859.  
  860. While running '-reduce gdt', the espresso program (latte)
  861. was not found or produced an internal error.
  862. *2038,A
  863. Fatal Error 2038: Can't open input file 'file_name'.
  864.  
  865. While running '-reduce dt', PLAOpt could not open the file.
  866. *2039,A
  867. Fatal Error 2039: Can't open input file 'file_name'.
  868.  
  869. While running '-reduce dt', PLAOpt could not open the file.
  870. *2040,A
  871. Fatal Error 2040: Can't open output file 'file_name'.
  872.  
  873. While running '-reduce dt', PLAOpt could not open the file.
  874. *2041,A
  875. Fatal Error 2041: Could not rename 'file_name' to 'file_name'.
  876.  
  877. *--Selector--,A
  878. *3000,A
  879. Warning 3000: Directory 'xxx' does not seem to have a database! ...
  880.  
  881. The environment variable ABEL4DB seems to be pointing to a
  882. directory that does not have a database. Or there could be a file
  883. protection problem.
  884.  
  885. *3012,A
  886. Warning 3012: Command line error occurred ...
  887.  
  888. There was a serious problem in the command line. Correct the
  889. call to this program or contact Data I/O Customer Resource
  890. Center if this happened while using the design environment
  891. menus.
  892.  
  893. *3013,A
  894. Message 3013: Selecting from given set of device architectures
  895.  
  896. DEVSEL only. The normal mode of operation is to check all device
  897. architectures for suitability, you have specified only some device
  898. architectures and have limited the search area.
  899.  
  900. *3014,A
  901. Message 3014: Selecting from all device architectures
  902.  
  903. DEVSEL only. The normal mode of operation is check all device
  904. architectures for suitability.
  905.  
  906. *3016,A
  907. Warning 3016: Error encountered reading ABEL-PLA file
  908.  
  909. An internal error occurred parsing the file containing your
  910. design.  Either the file specified was not an ABEL-PLA file or
  911. there is a bug. Contact Data I/O Customer Resource Center.
  912.  
  913. *3018,A
  914. Warning 3018: Error generating signal information
  915.  
  916. Contact Data I/O Customer Resource Center.
  917.  
  918. *3022,A
  919. Message 3022:  No chip report done, use -log or -sort options
  920.  
  921. DEVSEL only. A note that only the device architecture candidate
  922. list was created (or sent to STDOUT) and no chip report was
  923. done. Use the -LOG option on the command line or use the
  924. "Report File name" and "Report Sort order" in the design
  925. environment menus.
  926.  
  927. *3026,A
  928. Message 3026: Since no *.tt2 file specified, all device
  929. architectures ...
  930.  
  931. Normal mode of operation is to check estimated fit of each
  932. architecture against an input design. Since no design was
  933. specified all architectures will pass through that stage of
  934. selection.
  935.  
  936. *3027,A
  937. Message 3027: Note manufacturer ddd is not in the database
  938.  
  939. manufacturer specified in -MAN was illegal. May be a typing
  940. mistake or that manufacturer is not in the database.
  941.  
  942. *3028,A
  943. Warning 3028: Note package type sss is not known
  944.  
  945. Illegal package type after the -PACK command line option.
  946.  
  947. *3029,A
  948. Warning 3029: Note operating range spec type sss is not known
  949.  
  950. Illegal operating range after the -OPR command line option.
  951.  
  952. *3030,A
  953. Warning 3030: Note technology type xxx is not known
  954.  
  955. Illegal technology type after the -TECH command line option.
  956.  
  957. *3031,A
  958. Warning 3031: exact range for xxx does not make sense
  959.  
  960. In a range criteria, the "exact #" did not get an integer. If
  961. this is from the design environment menus, contact Data I/O
  962. Customer Resource Center.
  963.  
  964. *3032,A
  965. Warning 3032:  less range for xxx does not make sense
  966.  
  967. In a range criteria, the "less #" did not get an integer. If
  968. this is from the design environment menus, contact Data I/O
  969. Customer Resource Center.
  970.  
  971. *3033,A
  972. Warning 3033: greater range for xxx does not make sense.
  973.  
  974. In a range criteria, the "greater #" did not get an integer. If
  975. this is from the design environment menus, contact Data I/O
  976. Customer Resource Center.
  977.  
  978. *3034,A
  979. Warning 3034: range for xxx does not make sense
  980.  
  981. In a range criteria, the "range # #" did not get two integers,
  982. or the integer form a poor range (i.e. 3 to 1). If this is from
  983. the design environment menus, contact Data I/O Customer
  984. Resource Center.
  985.  
  986. *3035,A
  987. Warning 3035: syntax error yyy is not exact, less, greater, or
  988. range for xxx
  989.  
  990. In a range criteria, could not make sense out the the command.
  991. If this is from the design environment menus, contact Data I/O
  992. Customer Resource Center.
  993.  
  994. *3036,A
  995. Warning 3036: Note that arg xxx for yyy did not make sense
  996.  
  997. A command line error occurred. If this is from the design
  998. environment menus, contact Data I/O Customer Resource
  999. Center.
  1000.  
  1001. *3074,A
  1002. Warning 3074: File I/O problem, Could not open output stream xxx
  1003.  
  1004. Could not open the candidate device architecture list for writing.
  1005. May be bad pathname or a protection problem.
  1006.  
  1007. *3075,A
  1008. Warning 3075:  No more than 4 fields can be selected for sorting.
  1009.  
  1010. Present system has a hard limit on 4 sorting fields. Contact
  1011. Data I/O Customer Resource Center if that is a problem.
  1012.  
  1013. *3076,A
  1014. Warning 3076: direction xxx cannot be first word in sorting,
  1015. must have field first
  1016.  
  1017. For -SORT, the directions UP, DOWN, ... must follow a field name.
  1018.  
  1019. *3077,A
  1020. Warning 3077: word xxx not a field or a sorting direction
  1021.  
  1022. For -SORT, the word could not be parsed.
  1023.  
  1024. *3080,A
  1025. Warning 3080:  init_database got an ACCESS_FAILURE ...
  1026.  
  1027. Database could not be opened/created for some reason. The most-
  1028. likely cause is specifying an invalid directory in the
  1029. environment variable ABEL4DB, or damaging the database by
  1030. removing some internal files. There also could be a file
  1031. protection problem.
  1032.  
  1033. *3081,A
  1034. Warning 3081:  init_database got an ENVIRON_PROBLEM ...
  1035.  
  1036. In creating a database, the environment variable DB_DICT must
  1037. point to the directory containing the blank prototype database.
  1038.  
  1039. *3082,A
  1040. Message 3082:  Note using existing database at 'xxx'
  1041.  
  1042. A note that a new database was not created as one already exists.
  1043. The device information will be added to the information already in
  1044. the existing database.
  1045.  
  1046. *3083,A
  1047. Message 3083:  Note new database initialized at 'xxx'
  1048.  
  1049. A note that a new database was created.
  1050.  
  1051. *3084,A
  1052. Warning 3084:   internal error ddd when initialize database
  1053.  
  1054. Internal database error occurred. Maybe jammed database. Contact
  1055. Data I/O Customer Resource Center.
  1056.  
  1057. *3085,A
  1058. Warning 3085:  out of memory failure! ...
  1059.  
  1060. Could not get enough memory to create internal cache for the
  1061. database.  Either release more memory for the program by removing
  1062. resident functions or reduce the database cache by changing the
  1063. environment variable DB_PAGES (minimum recommended is 8)
  1064.  
  1065. *3086,A
  1066. Warning 3086: internal problem opening database...
  1067.  
  1068. Internal database error occurred. Maybe jammed database. Contact
  1069. Data I/O Customer Resource Center.
  1070.  
  1071. *3088,A
  1072. Warning 3088: Internal error code ddd when initializing database
  1073.  
  1074. Internal database error occurred. Maybe jammed database. Contact
  1075. Data I/O Customer Resource Center.
  1076.  
  1077. *3089,A
  1078. Warning 3089: Sorter database could not be initialized!
  1079.  
  1080. Internal database error occurred. Maybe jammed database. Contact
  1081. Data I/O Customer Resource Center.
  1082.  
  1083. *3090,A
  1084. Warning 3090: internal error ddd when reading device architecture
  1085.  
  1086. Internal database error occurred. Maybe jammed database. Contact
  1087. Data I/O Customer Resource Center.
  1088.  
  1089. *3094,A
  1090. Warning 3094: general internal error ddd with device architecture
  1091.  
  1092. Internal database error occurred. Maybe jammed database. Contact
  1093. Data I/O Customer Resource Center.
  1094.  
  1095. *3098,A
  1096. Warning 3098: internal list handling error when handling arch to
  1097. chip
  1098.  
  1099. Internal database error occurred. Maybe jammed database. Contact
  1100. Data I/O Customer Resource Center.
  1101.  
  1102. *3099,A
  1103. Warning 3099: internal list handling error when handling mfg to chip
  1104.  
  1105. Internal database error occurred. Maybe jammed database. Contact
  1106. Data I/O Customer Resource Center.
  1107.  
  1108. *3100,A
  1109. Warning 3100: general error ddd when handling chip information
  1110.  
  1111. Internal database error occurred. Maybe jammed database. Contact
  1112. Data I/O Customer Resource Center.
  1113.  
  1114. *3101,A
  1115. Warning 3101: internal error ddd when handling mfg info
  1116.  
  1117. Internal database error occurred. Maybe jammed database. Contact
  1118. Data I/O Customer Resource Center.
  1119.  
  1120. *3102,A
  1121. Warning 3102:  internal error ddd when reading mfg info
  1122.  
  1123. Internal database error occurred. Maybe jammed database. Contact
  1124. Data I/O Customer Resource Center.
  1125.  
  1126. *3107,A
  1127. Warning 3107: general error ddd when handling mfg info
  1128.  
  1129. Internal database error occurred. Maybe jammed database. Contact
  1130. Data I/O Customer Resource Center.
  1131.  
  1132. *3110,A
  1133. Warning 3110: *** internal database error ddd occurred ...
  1134.  
  1135. Internal database error occurred. Maybe jammed database. Contact
  1136. Data I/O Customer Resource Center.
  1137.  
  1138. *3111,A
  1139. Warning 3111: Fatal internal database system error ddd occurred
  1140.  
  1141. Internal database error occurred. Could be anything from a
  1142. damaged database to someone defeating database interlock and
  1143. jamming your run of the program. If internal error is -905,
  1144. problem could be your PC configuration in not allowing enough
  1145. open files. Contact Data I/O Customer Resource Center.
  1146.  
  1147. *3130,A
  1148. Warning 3130:  don't know what this enable is ...
  1149.  
  1150. Contact Data I/O Customer Resource Center.
  1151.  
  1152. *3137,A
  1153. Warning 3137: Could not open log file xxx
  1154.  
  1155. Obvious. Maybe bad pathname or a protection problem.
  1156.  
  1157. *3141,A
  1158. Warning 3141: could not open file xxx'
  1159.  
  1160. Could not find input file or there is a protection problem.
  1161.  
  1162. *3165,A
  1163. Warning 3165:  serious problem in storing parent architecture
  1164. xxx for alias line ddd
  1165.  
  1166. Internal database error occurred. Maybe jammed database. Contact
  1167. Data I/O Customer Resource Center.
  1168.  
  1169. *3168,A
  1170. Warning 3168:  internal error ddd, could not retrieve parent
  1171. architecture
  1172.  
  1173. Internal database error occurred. Maybe jammed database. Contact
  1174. Data I/O Customer Resource Center.
  1175.  
  1176. *3171,A
  1177. Warning 3171: Line ddd Manufacturer xxx could not be written in
  1178. database
  1179.  
  1180. Internal database error occurred. Maybe jammed database. Contact
  1181. Data I/O Customer Resource Center.
  1182.  
  1183. *3172,A
  1184. Warning 3172:  problems reading the ASCII dump file xxx
  1185.  
  1186. Error signaled while reading chip information file.
  1187.  
  1188. *3173,A
  1189. Warning 3173:  file not found error (maybe bad pathname)
  1190.  
  1191. Could not open the chip information file, either protection
  1192. problem or wrong pathname.
  1193.  
  1194. *3175,A
  1195. Warning 3175:  other internal error ddd
  1196.  
  1197. Unspecified internal error while reading chip information file.
  1198. Contact Data I/O Customer Resource Center.
  1199.  
  1200. *3200,A
  1201. Warning 3200: General database problem ddd when validating chip
  1202.  
  1203. Internal database error occurred. Maybe jammed database. Contact
  1204. Data I/O Customer Resource Center.
  1205.  
  1206. *3216,A
  1207. Warning 3216: internal database error ddd when accessing arch to
  1208. chip list
  1209.  
  1210. Internal database error occurred. Maybe jammed database. Contact
  1211. Data I/O Customer Resource Center.
  1212.  
  1213. *3220,A
  1214. Warning 3220: current chip xxx of arch yyy could not be added to
  1215. select list due to error ddd
  1216.  
  1217. Internal database error occurred. Maybe jammed database. Contact
  1218. Data I/O Customer Resource Center.
  1219.  
  1220. *3261,A
  1221. Warning 3261:  internal error, could not decode regtype ddd for
  1222. signal yyy
  1223.  
  1224. Contact Data I/O Customer Resource Center.
  1225.  
  1226. *3270,A
  1227. Warning 3270: internal error for sorter direction on sort key ddd
  1228.  
  1229. Contact Data I/O Customer Resource Center.
  1230.  
  1231. *3271,A
  1232. Warning 3271: internal error for decoding field for key ddd
  1233.  
  1234. Contact Data I/O Customer Resource Center.
  1235.  
  1236. *3272,A
  1237. Message 3272: No sort order specified, arranging records in
  1238. selected order
  1239.  
  1240. When specifying the chip report file without specifying a sorting
  1241. order, the selected chips will be presented in the selected order
  1242. which is ordered by architecture and part-name.
  1243.  
  1244. *3273,A
  1245. Warning 3273: internal error ddd when doing a non-sorting move
  1246.  
  1247. Internal database error occurred. Maybe jammed database. Contact
  1248. Data I/O Customer Resource Center.
  1249.  
  1250. *3276,A
  1251. Warning 3276: internal error index ddd is beyond the end of the
  1252. list size ddd
  1253.  
  1254. Internal database error occurred. Maybe jammed database. Contact
  1255. Data I/O Customer Resource Center.
  1256.  
  1257. *3277,A
  1258. Warning 3277: Internal error, Could not connect item to empty list!
  1259.  
  1260. Internal database error occurred. Maybe jammed database. Contact
  1261. Data I/O Customer Resource Center.
  1262.  
  1263. *3278,A
  1264. Warning 3278: internal error with movement in quicksort ...
  1265.  
  1266. Internal database error occurred. Maybe jammed database. Contact
  1267. Data I/O Customer Resource Center.
  1268.  
  1269. *3280,A
  1270. Warning 3280: internal error ddd when connecting sorted chip
  1271.  
  1272. Internal database error occurred. Maybe jammed database. Contact
  1273. Data I/O Customer Resource Center.
  1274.  
  1275. *3330,A
  1276. Warning 3330:  Could not access the ABEL-PLA file xxx
  1277.  
  1278. Could not open input design. May be a bad pathname or a protection
  1279. problem.
  1280.  
  1281. *3331,A
  1282. Warning 3331:  Internal error, ABEL-PLA parser failed!
  1283.  
  1284. Contact Data I/O Customer Resource Center.
  1285.  
  1286. *3335,A
  1287. Warning 3335:  Utilization factor is unreliable ...
  1288.  
  1289. Mathematics for calculating utilization factor failed in some
  1290. way. Contact Data I/O Customer Resource Center.
  1291.  
  1292. *3340,A
  1293. Warning 3340:  problems with the sorter database
  1294.  
  1295. Internal database error occurred. Maybe jammed database. Contact
  1296. Data I/O Customer Resource Center.
  1297.  
  1298. *3344,A
  1299. Warning 3344: Note given device xxx in -devices is not valid
  1300.  
  1301. There was an illegal device name after the -DEVICE command line
  1302. option. This could be a typing error or that device architecture
  1303. is not in the database.
  1304.  
  1305. *3346,A
  1306. Warning 3346:  problems with the sorter database
  1307.  
  1308. Internal database error occurred. Maybe jammed database. Contact
  1309. Data I/O Customer Resource Center.
  1310.  
  1311. *3354,A
  1312. Warning 3354:  internal error could not decode EQNtype ddd
  1313.  
  1314. Contact Data I/O Customer Resource Center.
  1315.  
  1316. *3370,A
  1317. Warning 3370: Out of memory in open_databases !!
  1318.  
  1319. Not enough memory to handle startup. Free up more memory for the
  1320. program.
  1321.  
  1322. *3371,A
  1323. Warning 3371: Could not open Database Version file, ...
  1324.  
  1325. SmartPart could not find a certain file inside the database.
  1326. The directory specified may not contain a database or the
  1327. database was damaged in some way. Another possibility is that
  1328. you do not have permission to access the database (need
  1329. read/write).
  1330.  
  1331. *3372,A
  1332. Warning 3372: Wrong version of database, ...
  1333.  
  1334. SmartPart's executables internal version number does not match the
  1335. internal version number of the database. Data in the database may
  1336. not align correctly and the the selector function may fail in
  1337. strange ways. You may have to dump the database using the old
  1338. executables and rebuild it using the new executables.
  1339.  
  1340. *3373,A
  1341. Warning 3373: could not find a database and ABEL4DB is not set!
  1342.  
  1343. SmartPart could not find a device database. Set the environment
  1344. variable ABEL4DB to the directory of the database, or specify
  1345. the directory in the "Modify Criteria" menu.
  1346.  
  1347. *3374,A
  1348. Warning 3374: Database name xxx is too long, aborting
  1349.  
  1350. The directory name specified in the environment variable ABEL4DB
  1351. or the database field in the "Modify Criteria" menu is unusable.
  1352. Correct the name or move the database directory to a more
  1353. reasonable place.
  1354.  
  1355. *3375,A
  1356. Warning 3375: There is no database at 'xxx'
  1357.  
  1358. SmartPart could not find a device database. The environment
  1359. variable ABEL4DB or the database field in "Modify Criteria" has
  1360. the wrong directory, fix it.
  1361.  
  1362. *3376,A
  1363. Warning 3376: Filename xxx is too big
  1364.  
  1365. Obvious
  1366.  
  1367. *3377,A
  1368. Warning 3377: Can't open file xxx
  1369.  
  1370. Obvious. Maybe bad pathname or a protection problem.
  1371.  
  1372. *3381,A
  1373. Warning 3381: general error ddd when handling chip  xxx
  1374.  
  1375. Internal database error occurred. Maybe jammed database. Contact
  1376. Data I/O Customer Resource Center.
  1377.  
  1378. *3382,A
  1379. Warning 3382: Should never Happen!. Duplicate record problem ...
  1380.  
  1381. Internal database error occurred. Maybe jammed database. Contact
  1382. Data I/O Customer Resource Center.
  1383.  
  1384. *3383,A
  1385. Warning 3383: internal error ddd when finding chip data to remove
  1386.  
  1387. DEVMRG only. Internal database error occurred. Maybe jammed
  1388. database. Contact Data I/O Customer Resource Center.
  1389.  
  1390. *3385,A
  1391. Warning 3385: internal error ddd when merging chip information
  1392.  
  1393. DEVMRG only. Internal database error occurred. Maybe jammed
  1394. database. Contact Data I/O Customer Resource Center.
  1395.  
  1396. *3391,A
  1397. Warning 3391: trouble updating arch record xxx  error was ddd
  1398.  
  1399. Internal database error occurred. Maybe jammed database. Contact
  1400. Data I/O Customer Resource Center.
  1401.  
  1402. *3394,A
  1403. Warning 3394: Command line error occurred ...
  1404.  
  1405. There was a serious problem in the command line. Correct the
  1406. call to this program or contact Data I/O Customer Resource
  1407. Center if this happened while using the design environment
  1408. menus.
  1409.  
  1410. *3401,A
  1411. Warning 3401: Error parsing command arguments
  1412.  
  1413. One or more of the options in the command line was illegal.
  1414. Other messages should have explained what was the problem.
  1415. Correct the call to this program.
  1416.  
  1417. *3403,A
  1418. Warning 3403:  error in device description
  1419.  
  1420. DEVSEL only. One of the specified device architectures is illegal.
  1421. You may have mistyped the command line or that architecture is not
  1422. in the database.
  1423.  
  1424. *3407,A
  1425. Warning 3407: internal options list is unsynced!!!
  1426.  
  1427. Contact Data I/O Customer Resource Center.
  1428.  
  1429. *3414,A
  1430. Warning 3414: You must specify some manufacturer
  1431.  
  1432. -MAN command line option must have manufacturer names after it.
  1433.  
  1434. *3415,A
  1435. Warning 3415:  You must specify some package
  1436.  
  1437. -PACK command line option must have package types after it.
  1438.  
  1439. *3416,A
  1440. Warning 3416:  You must specify some operating range
  1441.  
  1442. -OPR command line option must have operating ranges after it.
  1443.  
  1444. *3417,A
  1445. Warning 3417:  You must specify some technology
  1446.  
  1447. -TECH command line option must have device technologies after it.
  1448.  
  1449. *3420,A
  1450. Warning 3420:  Problems with chip report file name xxx
  1451.  
  1452. The chip report file pathname did not pass the tests of illegal
  1453. characters or allowed length.
  1454.  
  1455. *3421,A
  1456. Warning 3421:  Note report file xxx could not be opened
  1457.  
  1458. The chip report file was not opened. Could be a bad pathname or a
  1459. protection problem.
  1460.  
  1461. *3424,A
  1462. Warning 3424: Could not create version locking file xxx
  1463.  
  1464. File protection or disk space problems while creating the
  1465. database.
  1466.  
  1467. *3425,A
  1468. Warning 3425: Lockmgr program not running, its required
  1469.  
  1470. Optional inter-network database manager is needed for this
  1471. system and it is not there. Contact Data I/O Customer Resource
  1472. Center.
  1473.  
  1474. *3426,A
  1475. Warning 3426: The Lockmgr said that the database is already in
  1476. use...
  1477.  
  1478. Optional inter-network database manager has determined that the
  1479. database is already in use and you must try again later.
  1480.  
  1481. *3427,A
  1482. Warning 3427:  Could not get any memory to open databases!
  1483.  
  1484. Not enough memory for startup. Either release more memory for the
  1485. program by removing resident functions or reduce the database
  1486. cache by changing the environment variable DB_PAGES (minimum
  1487. recommended is 8)
  1488.  
  1489. *3428,A
  1490. Warning 3428: your user_id (environment variable USER) is
  1491. already in use
  1492.  
  1493. Optional inter-network database manager has determined that you
  1494. are already using a database on the network. Contact Data I/O
  1495. Customer Resource Center.
  1496.  
  1497. *3429,A
  1498. Warning 3429: your user_id (environment variable USER) is not set!
  1499.  
  1500. Optional inter-network database manager needs a user name to
  1501. resolve database conflicts. Contact Data I/O Customer Resource
  1502. Center.
  1503.  
  1504. *3430,A
  1505. Warning 3430: your user_id (environment variable USER) is garbage!
  1506.  
  1507. Optional inter-network database manager needs a user name to
  1508. resolve database conflicts. Contact Data I/O Customer Resource
  1509. Center.
  1510.  
  1511. *3431,A
  1512. Warning 3431: Internal error ddd in opening database
  1513.  
  1514. Internal database error occurred. Maybe jammed database. Contact
  1515. Data I/O Customer Resource Center.
  1516.  
  1517. *3439,A
  1518. Warning 3439: write error during chip report
  1519.  
  1520. The system could no longer write to the chip report file. Could be
  1521. an access problem or the disk is full.
  1522.  
  1523. *3446,A
  1524. Message 3446: Output candidate device list file: STDOUT
  1525.  
  1526. No candidate device architecture file specified (with -O). The
  1527. list will then goes to the output stream.
  1528.  
  1529. *3449,A
  1530. Message 3449: Chip report file: STDOUT
  1531.  
  1532. The -SORT option was used without the -LOG option. So the chip
  1533. report file will be sent to the output stream rather than to a
  1534. file.
  1535.  
  1536. *3450,A
  1537. Warning 3450: Note that report xxx contains no data, and will
  1538. be deleted
  1539.  
  1540. There were no chips or architectures meeting your criteria or
  1541. design needs and the empty output file is removed.
  1542.  
  1543. *3455,A
  1544. Warning 3455: could not enable INT error handler!
  1545.  
  1546. System problem, could not enable ^c or break trapping functions.
  1547. The database may get locked or corrupted if you try to abort the
  1548. program.
  1549.  
  1550. *3456,A
  1551. Warning 3456: could not enable ABRT error handler!
  1552.  
  1553. System problem, could not enable ^c or break trapping functions.
  1554. The database may get locked or corrupted if you try to abort the
  1555. program.
  1556.  
  1557. *3457,A
  1558. Warning 3457: could not enable TERM error handler!
  1559.  
  1560. System problem, could not enable ^c or break trapping functions.
  1561. The database may get locked or corrupted if you try to abort the
  1562. program.
  1563.  
  1564. *3459,A
  1565. Warning 3459: Database is already locked by user xxx Database
  1566. lock file is yyy
  1567.  
  1568. The device database can only be used by on person at a time. If
  1569. the user's name is 'anonymous', he did not set his environment
  1570. variable USER. If you determine that there is no other users for
  1571. the database, the lock system may be jammed, erase the lock file
  1572. only to unjam the interlock.
  1573.  
  1574. *3460,A
  1575. Warning 3460: cannot create lock file xxx
  1576.  
  1577. A protection problem prevented making the interlock system work.
  1578. Note the system may fail in a strange way if another user can get
  1579. past the protection problem and try to use the database.
  1580.  
  1581. *3463,A
  1582. Warning 3463: could not delete lock file xxx
  1583.  
  1584. A strange protection problem prevented removing the database
  1585. interlock. The system will not allow another access to the
  1586. database until the lock file is removed.
  1587.  
  1588. *3467,A
  1589. Warning 3467: Cleaning up for abort ...
  1590.  
  1591. A ^c or break was detected and the program has terminated
  1592. gracefully.
  1593.  
  1594. *3468,A
  1595. Warning 3468: write error during chip report
  1596.  
  1597. The system could no longer write to the chip report file. Could be
  1598. an access problem or the disk is full.
  1599.  
  1600. *3480,A
  1601. Warning 3480: could not allocate memory in build_mfg_list!!
  1602.  
  1603. Not enough memory to handle the list of manufactures specified.
  1604. Free up more memory for the program.
  1605.  
  1606. *3481,A
  1607. Warning 3481: could not allocate memory in build_pkg_list!!
  1608.  
  1609. Not enough memory to handle the list of package types specified.
  1610. Free up more memory for the program.
  1611.  
  1612. *3482,A
  1613. Warning 3482: could not allocate memory in build_spc_list!!
  1614.  
  1615. Not enough memory to handle the list of operating ranges
  1616. specified.  Free up more memory for the program.
  1617.  
  1618. *3483,A
  1619. Warning 3483: could not allocate memory in build_tech_list!!
  1620.  
  1621. Not enough memory to handle the list of device technologies
  1622. specified.  Free up more memory for the program.
  1623.  
  1624. *3485,A
  1625. Warning 3485: Could not allocate memory in sigs!!!
  1626.  
  1627. Not enough memory to handle decoding the input design. Free up
  1628. more memory for the program.
  1629.  
  1630.  
  1631. *--Fitter--,A
  1632. *4000,A
  1633. Warning 4000:  Input enabled for burying (inputs cannot be
  1634. buried) - designation of input 'xxxx' as 'NODE' ignored.
  1635.  
  1636. Change the problem signal from 'istype node' to 'istype pin'.
  1637. *4002,A
  1638. Fatal Error 4002: Unable to open file 'xxxx' for read.
  1639.  
  1640. Check that you have read privilege for the specified file. Contact
  1641. the Data I/O Customer Resource Center.
  1642. *4003,A
  1643. Fatal Error 4003: Unable to open file 'xxxx' for write.
  1644.  
  1645. Check the access rights in the given directory. First look
  1646. look for the given file to already exist without write privilege.
  1647. Contact the Data I/O Customer Resource Center.
  1648. *4004,A
  1649. Internal Error 4004: Class Error:xxxx <various>
  1650.  
  1651. Contact the Data I/O Customer Resource Center.
  1652. *4005,A
  1653. Command Error 4005: No input file specified
  1654.  
  1655. Use the -i filename[.tt2] command line to specify input pla file
  1656. name.
  1657. *4006,A
  1658. Command Error 4006: The Fitter does not have traditional output;
  1659. argument 'xxxx' cannot be used.
  1660.  
  1661. Do not use the "-o" flag with the fitter.
  1662. *4007,A
  1663. Command Error 4007: Candidate list file 'xxxx' and device name
  1664. 'XXX' cannot both be specified.
  1665.  
  1666. Do not use -dev and -idev at the same time.
  1667. *4009,A
  1668. Warning 4009: Signal 'xxxx' is an input and cannot appear in the
  1669. '$NODES' list.
  1670.  
  1671. Remove the 'istype node' in the AHDL source file for the given
  1672. signal.
  1673. *4010,A
  1674. Fatal Error 4010: Unable to open file 'xxxx' for write.
  1675.  
  1676. Check that you have write privilege for the specified file.
  1677. *4011,A
  1678. Fatal Error 4011: Unable to open file 'xxxx' for read.
  1679.  
  1680. Check that you have read privilege for the specified file.
  1681. *4012,A
  1682. Fatal Error 4012: No device names found in device list file 'xxxx'.
  1683.  
  1684. Either edit the file and add device architecture names, or re-run
  1685. the selector to select device architectures for you.
  1686. *4013,A
  1687. Internal Error 4013: Cluster_fits(): invalid pin
  1688.  
  1689. Contact the Data I/O Customer Resource Center.
  1690. *4014,A
  1691. Internal Error 4014: Unknown RCxx type
  1692.  
  1693. Contact the Data I/O Customer Resource Center.
  1694. *4015,A
  1695. Internal Error 4015: Cluster_fits(): bad pinty on pin NN.
  1696.  
  1697. Contact the Data I/O Customer Resource Center.
  1698. *4016,A
  1699. Internal Error 4016: Illegal extension
  1700.  
  1701. Contact the Data I/O Customer Resource Center.
  1702. *4017,A
  1703. Internal Error 4017: GetOEnode(): bad enable type
  1704.  
  1705. Contact the Data I/O Customer Resource Center.
  1706. *4018,A
  1707. Internal Error 4018: Unknown RCxx type
  1708.  
  1709. Contact the Data I/O Customer Resource Center.
  1710. *4019,A
  1711. Internal Error 4019: Process_IC(): invalid pin
  1712.  
  1713. Contact the Data I/O Customer Resource Center.
  1714. *4020,A
  1715. Internal Error 4020: PT is null; signum = ####
  1716.  
  1717. Contact the Data I/O Customer Resource Center.
  1718. *4021,A
  1719. Internal Error 4021: Pin ####'s TT should have been modified
  1720.  
  1721. Contact the Data I/O Customer Resource Center.
  1722. *4023,A
  1723. Fatal Error 4023: No device specified with -dev, -idev, or via the
  1724. input PLA.
  1725.  
  1726. Either use the device statement in the AHDL source file or
  1727. specify the device name with the command line flag -dev.
  1728. *4024,A
  1729. Internal Error 4024: Make_fitlist_sharing() not implemented
  1730.  
  1731. Contact the Data I/O Customer Resource Center.
  1732. *4025,A
  1733. Warning 4025: Unused input 'xxxx' ignored; it was probably reduced
  1734. out.
  1735.  
  1736. Check your equations and remove offending signal from the design.
  1737. *4026,A
  1738. Internal Error 4026: Model_fixup(): invalid pin
  1739.  
  1740. Contact the Data I/O Customer Resource Center.
  1741. *4027,A
  1742. Internal Error 4027: Fitter doesn't support term type ####.
  1743.  
  1744. Contact the Data I/O Customer Resource Center.
  1745. *4028,A
  1746. Internal Error 4028: EP_fixup(): invalid polarity type
  1747.  
  1748. Contact the Data I/O Customer Resource Center.
  1749. *4029,A
  1750. Command Error 4029: Improper command line.
  1751.  
  1752. Type fit -usage to get proper command line syntax.
  1753. *4030,A
  1754. Warning 4030: Signal 'xxxx' preassigned to internal node -
  1755. assignment will persist.
  1756.  
  1757. The fitter will not attempt to fit this signal, it will remain
  1758. assigned.
  1759. *4031,A
  1760. Command Error 4031: Improper input file name 'xxxx'.
  1761.  
  1762. The name of the PLA input file should have no extension
  1763. (.tt3 assumed), or some other .ttN extension.
  1764. *4032,A
  1765. Device Error 4032: Device 'xxxx' is not currently supported by any
  1766. fitter.
  1767.  
  1768. For this device, the pins must be assigned by manually. Assign the
  1769. pins in the AHDL source file.
  1770. *4033,A
  1771. Warning 4033: Unable to run program 'xxxx'.
  1772.  
  1773. An attempt to span another program failed. There may be no memory
  1774. left, or there is not enough disk space.
  1775. *4034,A
  1776. Note 4034: Unable to preserve preassignments. Performing second
  1777. pass without preassignments.
  1778. *4035,A
  1779. Note 4035: Signal 'xxxx' was preassigned to a non-design,
  1780. pin - ignored.
  1781.  
  1782. A signal was assigned to a non-functional pin such as power,
  1783. ground, or no-connect.
  1784. *4036,A
  1785. Note 4036: Signal 'xxxx' is preassigned to nonexistant pin
  1786. - ignored.
  1787.  
  1788. Either allow the signal to NOT have a pin assignment (using pin
  1789. number zero is equivalent to this), or check a logic diagram of
  1790. the device and select a valid pin.
  1791. *4037,A
  1792. Note 4037: Signal 'xxxx' cannot be assigned, no input pins
  1793. available.
  1794.  
  1795. You must choose a device with more inputs. If there were problems
  1796. fitting the outputs, this may be a spurious message.
  1797. *4038,A
  1798. Note 4038: Signal 'xxxx' could not be fit, device did not have
  1799. enough banks with common reset, preset, and output-enable
  1800.                   common reset and preset
  1801.                   common clock
  1802.                   common output-enable
  1803.                   internal error - unknown banking
  1804. One of the above conditions will be displayed in the message.
  1805.  
  1806. The following message will be given once PER EXECUTION if the
  1807. above warning is used.
  1808.  
  1809. Note that the above message may be given for outputs WITHOUT the
  1810. mentioned common signal(s). This is because the device is banked,
  1811. and all outputs that don't use the common signal need their own
  1812. bank.
  1813.  
  1814. Investigate the logic diagram for the given device. To use this
  1815. device, you must reduce the number of different reset/clock/oe
  1816. (whichever is listed) equations.
  1817. *4039,A
  1818. Note 4039: Signal 'xxxx' is preassigned to a nonexistant
  1819. pin - ignored.
  1820.  
  1821. Either allow the signal to NOT have a pin assignment (using pin
  1822. number zero is equivalent to this), or check a logic diagram of
  1823. the device and select a valid pin.
  1824. *4040,A
  1825. Note 4040: Signal 'xxxx' is preassigned to xxxx ####. The yyyy is
  1826. incompatible in direction - ignored.
  1827.  
  1828. If the signal is an output, it must be assigned to an O/IO pin.
  1829. Input signals must be assigned to I/IO pins.
  1830. *4041,A
  1831. Note 4041: Signal 'xxxx' is preassigned to xxxx ####. The
  1832. preassignment is not possible - ignored.
  1833.  
  1834. Either allow the signal to NOT have a pin assignment (using pin
  1835. number zero is equivalent to this), or check a logic diagram of
  1836. the device and select a valid pin.
  1837. *4042,A
  1838. Note 4042: Unable to assign 'xxxx', not enough xxxxs like xxxx ####.
  1839.  
  1840. Unless you can shrink your design by one output, you will have to
  1841. select a device with more outputs like the one referred to.
  1842. *4043,A
  1843. Internal Error 4043: Term_alloc(): Pin ####'s TT should have been
  1844. modified.
  1845.  
  1846. Contact the Data I/O Customer Resource Center.
  1847. *4044,A
  1848. Warning 4044: Unable to reopen file 'xxxx' for append. Log file
  1849. messages being redirected to error out.
  1850.  
  1851. Run the fitter again, don't use any invoked/adhoc fitters.
  1852. *4045,A
  1853. Note 4045: The preassignment of 'xxxx' to xxxx #### cannot be
  1854. maintained - overidden.
  1855.  
  1856. Do not assign a pin number to this signal.
  1857. *4046,A
  1858. Note 4046: Signal 'xxxx' (which has no OE) has been assigned to pin
  1859. #### (which has pin OE).
  1860.  
  1861. Add an OE input signal, and OE equations to your design.
  1862. *4047,A
  1863. Note 4047: Signal 'xxxx' was fed back in an unspecified manner;
  1864. Q-feedback is being used (xxxx ####).
  1865.  
  1866. An equation without a dot extension was used (CNT := CNT + 1)
  1867. and the default is to use pin feedback. Since the device
  1868. has no pin feedback, Q feedback is being used. If the
  1869. equations is rewritten (CNT := CNT.FB + 1), the message no
  1870. longer appear.
  1871. *4049,A
  1872. Note 4049: When attempting to fit equation 'xxxx' to xxxx ####, no
  1873. dedicated input pin was available.
  1874.  
  1875. Typically occurs for CLK, OE and similar functions. Choose a device
  1876. with more than one input for the offending signal.
  1877. *4050,A
  1878. Note 4050: Design would require both xxxx and xxxx to be assigned
  1879. to xxxx xxxx.
  1880.  
  1881. Select a device that has more than one pin that provides the same
  1882. function as the one mentioned.
  1883. *4051,A
  1884. Note 4051: Design would require xxxx to be assigned to both xxxx
  1885. #### and xxxx ####.
  1886.  
  1887. Modify your design to use two separate inputs for the same
  1888. function (e.g. CLK1, and CLK2). Be sure to investigate the logic
  1889. diagram.
  1890. *4052,A
  1891. Internal Error 4052: Invalid register type
  1892.  
  1893. Contact the Data I/O Customer Resource Center.
  1894. *4053,A
  1895. Note 4053: Signal xxxx cannot be assigned (to xxxx ####) because
  1896. pin #### is not an output pin.
  1897.  
  1898. This error should not occur, contact the Data I/O Customer Resource
  1899. Center for assistance.
  1900. *4054,A
  1901. Note 4054: Signal xxxx cannot be assigned (to xxxx ####) because
  1902. 'xxxx' Pin #### can't be used as input.
  1903.  
  1904. This error should not occur, contact the Data I/O Customer
  1905. Resource Center for assistance.
  1906. *4055,A
  1907. Note 4055: Signal #### cannot be assigned (to xxxx ####) because
  1908. pin #### is not a registered pin.
  1909.  
  1910. The design has registered equations. You will need to pick a
  1911. device with registers.
  1912. *4056,A
  1913. Note 4056: Signal xxxx cannot be assigned (to yyyy ####) because
  1914. pin #### is a registered pin and cannot be bypassed.
  1915.  
  1916. The design has combinatorial equations. You will need to pick a
  1917. device that either has combinatorial outputs or outputs that can
  1918. be bypassed.
  1919. *4057,A
  1920. Note 4057: Signal xxxx cannot be assigned (to yyyy ####) because
  1921. the design can't use an XOR for 'xxxx' pin ####.
  1922.  
  1923. The design has XOR equations. You will need to choose a device
  1924. with XOR gates, or remove the istype XOR from the design so
  1925. the XOR is reduced to sum-of-products form.
  1926. *4058,A
  1927. Note 4058: Signal xxxx cannot be assigned (to yyyy ####) because the
  1928. equation 'xxxx' pin #### can't be programmed inverted.
  1929.  
  1930. The design needs inversion before the pin. You will need to pick
  1931. a device that has inverters.
  1932. *4059,A
  1933. Note 4059: Signal xxxx cannot be assigned (to yyyy ####) because
  1934. there are too many terms for output 'xxxx' pin ####.
  1935.  
  1936. You will need to choose a device that has enough terms.
  1937. *4060,A
  1938. Note 4060: Signal xxxx cannot be assigned (to yyyy ####) because the
  1939. register on pin #### does not have preset.
  1940.  
  1941. You will need to choose a device with registers that can be preset.
  1942. *4061,A
  1943. Note 4061: Signal xxxx cannot be assigned (to yyyy ####) because the
  1944. register on pin #### does not have asynchronous preset.
  1945.  
  1946. You will need to choose a device with asynchronous preset
  1947. registers.
  1948. *4062,A
  1949. Note 4062: Signal xxxx cannot be assigned (to yyyy ####) because the
  1950. register on pin #### does not have synchronous preset.
  1951.  
  1952. You will need to choose a device with synchronous preset
  1953. registers.
  1954. *4063,A
  1955. Note 4063: Signal xxxx cannot be assigned (to yyyy ####) because the
  1956. register on pin #### does not have reset.
  1957.  
  1958. You will need to choose a device with registers that can be reset.
  1959. *4064,A
  1960. Note 4064: Signal xxxx cannot be assigned (to yyyy ####) because the
  1961. register on pin #### does not have asynchronous reset.
  1962.  
  1963. You will need to choose a device with asynchronous reset registers.
  1964. *4065,A
  1965. Note 4065: Signal xxxx cannot be assigned (to yyyy ####) because the
  1966. register on pin #### does not have synchronous reset.
  1967.  
  1968. You will need to choose a device with synchronous reset registers.
  1969. *4066,A
  1970. Note 4066: Signal xxxx cannot be assigned (to yyyy ####) because the
  1971. register on pin #### does not have preload.
  1972.  
  1973. You will need to choose a device with preloadable registers.
  1974. *4067,A
  1975. Note 4067: Signal xxxx cannot be assigned (to yyyy ####) because the
  1976. register type of 'xxxx' pin #### is invalid.
  1977.  
  1978. The design and the device have different register types,
  1979. for example, D's and JK's. Either the design or the device
  1980. choice must be modified so that both have the same register type.
  1981. *4068,A
  1982. Note 4068: Signal xxxx cannot be assigned (to yyyy ####) because the
  1983. register on pin #### does not have function control.
  1984.  
  1985. You will need to choose a device with selectable register types
  1986. (e.g. JK/D registers).
  1987. *4069,A
  1988. Note 4069: Signal xxxx cannot be assigned (to yyyy ####) because the
  1989. dynamic register type of 'xxxx' pin #### requires an FC equation.
  1990.  
  1991. This device has selectable registers (JK/D), and an .FC equation
  1992. needs to be added.
  1993. *4070,A
  1994. Note 4070: Signal xxxx cannot be assigned (to yyyy ####) because an
  1995. FC equation of 'xxxx' pin #### must be low to use D flip flop.
  1996.  
  1997. Either write .FC = 0, or stop using .D equations for the
  1998. given output.
  1999. *4071,A
  2000. Note 4071: Signal xxxx cannot be assigned (to yyyy ####) because an
  2001. enable equation is not allowed on pin ####.
  2002.  
  2003. Either remove the .OE equations, or choose a device that
  2004. has the proper output enabling mechanism.
  2005. *4072,A
  2006. Note 4072: Signal xxxx cannot be assigned (to yyyy ####) because the
  2007. enable equation on pin #### can only be VCC or GND.
  2008.  
  2009. Either assign 1 or 0 to the .OE equations, or select a device
  2010. that has the proper output enabling mechanism.
  2011. *4073,A
  2012. Note 4073: Signal xxxx cannot be assigned (to yyyy ####) because the
  2013. enable equation on pin #### can only come from the enable pin.
  2014.  
  2015. Either assign an input to the .OE (signifing pin controlled OE),
  2016. or select a device that has the proper output enabling mechanism.
  2017. *4074,A
  2018. Note 4074: Signal xxxx cannot be assigned (to yyyy ####) because the
  2019. enable equation polarity does not match enable on pin ####.
  2020.  
  2021. Reverse the polarity of the .OE equations.
  2022. *4075,A
  2023. Note 4075: Signal xxxx cannot be assigned (to yyyy ####) because
  2024. no feedback is allowed for 'xxxx' pin ####.
  2025.  
  2026. Select a device that has the proper feedback.
  2027. *4076,A
  2028. Note 4076: Signal xxxx cannot be assigned (to yyyy ####) because
  2029. OR feedback is not allowed on 'xxxx' pin ####.
  2030.  
  2031. Select a device that has the proper feedback.
  2032. *4077,A
  2033. Note 4077: Signal xxxx cannot be assigned (to yyyy ####) because
  2034. registered feedback is not allowed on 'xxxx' pin ####.
  2035.  
  2036. Select a device that has the proper feedback.
  2037. *4078,A
  2038. Note 4078: Signal xxxx cannot be assigned (to yyyy ####) because
  2039. pin feedback is not allowed on 'xxxx' pin ####.
  2040.  
  2041. Select a device that has the proper feedback.
  2042. *4079,A
  2043. Note 4079: Signal xxxx cannot be assigned (to yyyy ####) because
  2044. too many feedbacks are used on 'xxxx' pin ####.
  2045.  
  2046. Select a device that has the proper feedback.
  2047. *4080,A
  2048. Note 4080: Signal xxxx cannot be assigned (to yyyy ####) because it
  2049. can't resolve the equation for select mux 'xxxx'.
  2050.  
  2051. Refer to the device's logic diagram. The output macro has a
  2052. select mux where neither choice is suitable. Select a device
  2053. that has the necessary features.
  2054. *4081,A
  2055. Note 4081: Signal xxxx cannot be assigned (to yyyy ####) because the
  2056. equation polarity for xxxx is not supported on pin ####.
  2057.  
  2058. Do not issue the -fixed option to PLAOPT, or select a device
  2059. with different or programmable polarity.
  2060. *4083,A
  2061. Note 4083: Signal 'xxxx' did not fit because it had too many
  2062. product terms.
  2063.  
  2064. Use the selector or logic diagrams to select a suitable device.
  2065. *4084,A
  2066. Note 4084: Signal 'xxxx' did not fit because it did not have banked
  2067. preset, reset, and OE.
  2068.  
  2069. Use the selector or logic diagrams to select a suitable device.
  2070. *4085,A
  2071. Note 4085: Signal 'xxxx' did not fit because it did not have
  2072. banked preset and reset.
  2073.  
  2074. Use the selector or logic diagrams to select a suitable device.
  2075. *4086,A
  2076. Note 4086: Signal 'xxxx' did not fit because it did not have a
  2077. banked clock.
  2078.  
  2079. Use the selector or logic diagrams to select a suitable device.
  2080. *4087,A
  2081. Note 4087: Signal 'xxxx' did not fit because it did not have
  2082. a banked OE.
  2083.  
  2084. Use the selector or logic diagrams to select a suitable device.
  2085. *4088,A
  2086. Note 4088: Signal 'xxxx' did not fit because potential output
  2087. macros were not properly registered/combinatorial.
  2088.  
  2089. Use the selector or logic diagrams to select a suitable device.
  2090. *4089,A
  2091. Note 4089: Signal 'xxxx' did not fit because potential output
  2092. macros did not have the necessary Q/OR feedback.
  2093.  
  2094. Use the selector or logic diagrams to select a suitable device.
  2095. *4090,A
  2096. Note 4090: Signal 'xxxx' did not fit because potential output
  2097. macros did not have the necessary pin feedback.
  2098.  
  2099. Use the selector or logic diagrams to select a suitable device.
  2100. *4091,A
  2101. Note 4091: Signal 'xxxx' did not fit because potential output
  2102. macros did not have the necessary preset/reset.
  2103.  
  2104. Use the selector or logic diagrams to select a suitable device.
  2105. *4092,A
  2106. Note 4092: Signal 'xxxx' did not fit because potential output
  2107. macros did not have the proper enablin.
  2108.  
  2109. Use the selector or logic diagrams to select a suitable device.
  2110. *4093,A
  2111. Note 4093: Signal 'xxxx' did not fit because potential output
  2112. macros did not have output pins.
  2113.  
  2114. Only nodes matched the requirements of the equations, but they were
  2115. buried nodes and the design required real outputs. Use the selector
  2116. or logic diagrams to select a suitable device.
  2117. *4094,A
  2118. Note 4094: Signal 'xxxx' did not fit because potential output
  2119. macros did not have XOR's.
  2120.  
  2121. Use the selector or logic diagrams to select a device with
  2122. XOR's, or remove the 'istype XOR' so that the XOR equations are
  2123. reduced to sum-of-products form.
  2124. *4095,A
  2125. Note 4095: Signal 'xxxx' did not fit because device output macros
  2126. were not compatible with the equation.
  2127.  
  2128. Use the selector or logic diagrams to select a suitable device.
  2129. *4096,A
  2130. Note 4096: Signal xxxx cannot be assigned (to yyyy ####)
  2131. because the equation xxxx was specified 'invert' but yyyy ####
  2132. is 'buffer'.
  2133.  
  2134. Choose a device with inverters before the pin, or remove the
  2135. istype invert from the AHDL source file.
  2136. *4097,A
  2137. Note 4097: Signal xxxx cannot be assigned (to yyyy ####)
  2138. because the equation xxxx was specified 'buffer' but yyyy ####
  2139. is 'invert'.
  2140.  
  2141. Choose a device without inverters before the pin, or remove the
  2142. istype buffer" from the AHDL source file.
  2143. *4098,A
  2144. Note 4098: Signal xxxx cannot be assigned (to yyyy ####) because
  2145. input to register xxxx can only be from pin ####.
  2146.  
  2147. This error should not occur, contact the Data I/O Customer
  2148. Resource Center for assistance.
  2149. *4099,A
  2150. Note 4099: Design has too many product terms (####) for device
  2151. (#### terms).
  2152. Choose an FPLA that is bigger.
  2153. *4101,A
  2154. Logical Error 4101:  'xxxx.yy' is not a valid feedback term
  2155.  
  2156. An equation term was encountered that has an illegal extension
  2157. for use as feedback.
  2158. *4102,A
  2159. Logical Error 4102:  More signals than an 1800 can fit!
  2160.  
  2161. The design is too big to fit in the E1800 device.
  2162. *4103,A
  2163. Logical Error 4103: Too many global signals! Maximum globals
  2164. allowed is 'nn'.
  2165.  
  2166. The design has too many signals that need to be global signals.
  2167. The E1800 has only 16 global macrocells.
  2168. *4104,A
  2169. Logical Error 4104:  Unable to assign 'xxxx' as a global signal.
  2170.  
  2171. The design has too many signals that need to be global signals.
  2172. The E1800 has only 16 global macrocells.
  2173. *4105,A
  2174. Logical Error 4105:  Failed to fit equations into quadrant 'n'
  2175.  
  2176. This indicates that the fitter was unable to complete assignments
  2177. in this quadrant.  This is usually do to a macrocell configuration
  2178. error, or a connectivity error (more than 8 signals that need to
  2179. be local in one quadrant).
  2180. *4106,A
  2181. Logical Error 4106:  Design needs 'n1' inputs, only 'n2' inputs are
  2182.     available
  2183.  
  2184. Too many input signals in the design.
  2185. *4107,A
  2186. Logical Error 4107:  Signal 'xxxx' with clock term 'yyyy' requires
  2187.         synchronous clock, but clock term 'yyyy' is not an input,
  2188.         and can't be mapped to the quadrant clock pin.
  2189.  
  2190. The design has an illegal clock term for the synchronous clock.
  2191. *4108,A
  2192. Internal Error 4108:  Failed to find global pin for 'xxxx'
  2193.  
  2194. An internal program error.  Contact the Data I/O Customer Resource
  2195. Center.
  2196. *4109,A
  2197. Internal Error 4109:  Failed to find local pin for 'xxxx'
  2198.  
  2199. An internal program error.  Contact the Data I/O Customer Resource
  2200. Center.
  2201. *4110,A
  2202. Logical Error 4110:  Pin 'nn' assigned to 'xxxx' is not a valid
  2203. input pin.
  2204.  
  2205. The design has an illegal pin preassignment.
  2206. *4111,A
  2207. Logical Error 4111:  Pin 'nn' assigned to 'xxxx' is not a valid
  2208. I/O pin
  2209.  
  2210. The design has an illegal pin preassignment.
  2211. *4112,A
  2212. Logical Error 4112:  Signal 'xxxx' needs to be global because:
  2213.                  It drives more than 'nn' outputs.
  2214.                  It requires dual feedback.
  2215.      But the OE is disabled, so global feedback can't be used.
  2216.  
  2217. This indicates that the signal needs to be a global signal, but
  2218. the only path to the global bus is via pin feedback, and that
  2219. can't be used because the design has the output enable disabled.
  2220. *4113,A
  2221. Logical Error 4113: Signal %s%s in '%s' is non-global input to %s
  2222.      in '%s'
  2223.  
  2224. Indicates a connectivity error in the fitter.  After fitter
  2225. completion, the connectivity checker detected illegal assignments.
  2226. Contact the Data I/O Customer Resource Center.
  2227. *4114,A
  2228. Logical Error 4114: Signal %s in '%s' wants FB from %s%s in '%s'
  2229.  
  2230. Indicates a connectivity error in the fitter.  After fitter
  2231. completion, the connectivity checker detected illegal assignments.
  2232. Contact the Data I/O Customer Resource Center.
  2233. *4115,A
  2234. Logical Error 4115: Local signal %s in '%s' outputs to %s%s in '%s'
  2235.  
  2236. Indicates a connectivity error in the fitter.  After fitter
  2237. completion, the connectivity checker detected illegal assignments.
  2238. Contact the Data I/O Customer Resource Center.
  2239. *4116,A
  2240. Logical Error 4116:  Signal 'xxxx' with clock term 'yyyy' requires
  2241.                  synchronous clock, but clock term 'yyyy' is
  2242.                  inverted.  There is no inversion on the
  2243.                  quadrant clock pin.
  2244.  
  2245. You cannot use inversion on the synchronous clock input term.
  2246. *4117,A
  2247. Internal Error 4117: nn placement error(s) detected
  2248.  
  2249. Indicates a connectivity error in the fitter.  After fitter
  2250. completion, the connectivity checker detected illegal assignments.
  2251. Contact the Data I/O Customer Resource Center.
  2252. *4118,A
  2253. Logical Error 4118: Signal 'xxxx' was not assigned!
  2254.  
  2255. Indicates a connectivity error in the fitter.  After fitter
  2256. completion, the connectivity checker detected illegal assignments.
  2257. Contact the Data I/O Customer Resource Center.
  2258. *4119,A
  2259. Logical Error 4119: Signal %s was assigned to more than 1 quadrant!
  2260.  
  2261. Indicates a connectivity error in the fitter.  After fitter
  2262. completion, the connectivity checker detected illegal assignments.
  2263. Contact the Data I/O Customer Resource Center.
  2264. *4120,A
  2265. Logical Error 4120:  Signal 'xxxx' with clock term 'yyyy' requires
  2266.      synchronous clock, but quadrant synchronous
  2267.      clock is already assigned to 'zzzz'
  2268.  
  2269. This usually occurs when two equations have been preassigned to the
  2270. same quadrant, but they use two different synchronous clock input
  2271. terms, and each quadrant has only one synchronous clock.
  2272. *4121,A
  2273. Logical Error 4121:  'xxxx.y' is not a valid register term.
  2274. Device does not support this register type.
  2275.  
  2276. An equation term was encountered that has an illegal register
  2277. type for the E1800 device.
  2278. *4122,A
  2279. Logical Error 4122: 'xxxx.yy' is not a valid register term
  2280. Device does not support this register option
  2281.  
  2282. An equation term was encountered with a register option not
  2283. supported on the E1800 device (i.e. register preset).
  2284. *4123,A
  2285. Internal Error 4123:  Dangling locals, mblocal:nn.
  2286.  
  2287. An internal program error.  Contact the Data I/O Customer Resource
  2288. Center.
  2289. *4124,A
  2290. Internal Error 4124:  unassigned list overflow
  2291.  
  2292. An internal program error.  Contact the Data I/O Customer Resource
  2293. Center.
  2294. *4125,A
  2295. Internal Error 4125:  mblocal list overflow
  2296.  
  2297. An internal program error.  Contact the Data I/O Customer Resource
  2298. Center.
  2299. *4126,A
  2300. Logical Error 4126:  Signal 'xxxx' with clock term 'yyyy' cannot
  2301. be assigned to the synchronous clock.
  2302.  
  2303. The named clock term could not be assigned to the quadrant
  2304. synchronous clock.  This may be a program error.  Contact the Data
  2305. I/O Customer Resource Center.
  2306. *4127,A
  2307. Internal Error 4127:  mbglobal list overflow
  2308.  
  2309. An internal program error.  Contact the Data I/O Customer Resource
  2310. Center.
  2311. *4128,A
  2312. Internal Error 4128:  mbaccess list overflow
  2313.  
  2314. An internal program error.  Contact the Data I/O Customer Resource
  2315. Center.
  2316. *4129,A
  2317. Internal Error 4129:  alocal list overflow
  2318.  
  2319. An internal program error.  Contact the Data I/O Customer Resource
  2320. Center.
  2321. *4130,A
  2322. Internal Error 4130:  aqglobal list overflow
  2323.  
  2324. An internal program error.  Contact the Data I/O Customer Resource
  2325. Center.
  2326. *4131,A
  2327. Internal Error 4131:  cglobal list overflow
  2328.  
  2329. An internal program error.  Contact the Data I/O Customer Resource
  2330. Center.
  2331. *4132,A
  2332. Logical Error 4132:  Signal 'xxxx' requires synchronous clock,
  2333.              but no clock term was specified.
  2334.  
  2335. There is no clock equation in the design for the specified signal.
  2336. *4133,A
  2337. Logical Error 4133:  All of the signals requiring synchronous
  2338.     clocking from 'xxxx' will not fit in the same quadrant.
  2339.  
  2340. There are more equations using a single synchronous clock term
  2341. than will fit in one quadrant.
  2342. *4134,A
  2343. Internal Error 4134:  Pin assignment for 'xxxx', pin 'nn' is bad
  2344.  
  2345. An internal program error.  Contact the Data I/O Customer Resource
  2346. Center.
  2347. *4135,A
  2348. Logical Error 4135:  Signal 'xxxx' needs to be in quadrant 'n',
  2349.                      but it's assigned to pin 'nn'
  2350.  
  2351. This signal has been preassigned to a pin that puts it in
  2352. a different quadrant than the signals it needs to communicate
  2353. with.
  2354. *4136,A
  2355. Logical Error 4136:, Fitter failed using preassigned pins.  Another
  2356.     attempt will be made ignoring preassignments.
  2357.  
  2358. The pin preassignments in the design would not fit into the part,
  2359. and "-preassign try" was selected, so the fitter will now attempt
  2360. to fit the design by ignoring the preassigned pins.
  2361.  
  2362. *4151,A
  2363. Note 4151 Signal 'xxxx' could not be assigned to pin xxxx because
  2364. pin #### does not feed the array, and other equations use 'xxxx'.
  2365.  
  2366. Choose a device where the device allows the input to be
  2367. a control signal (e.g. OE) as well as an array input.
  2368. *4152,A
  2369. Note 4152: Signal 'xxxx' - register feedback was used in the
  2370. design but pin feedback is used in the device and the output
  2371. (xxxx ####) has pin controlled OE.
  2372.  
  2373. You should not get this message. Contact the Data I/OCustomer
  2374. Resource Center.
  2375. *4153,A
  2376. Note 4153: Signal 'xxxx' is not used in the design and will not
  2377. be assigned a pin.
  2378.  
  2379. There is a signal that either wasn't used (input), or had no
  2380. equations (output). If it has some special purpose, you may
  2381. assign a pin number, otherwise it should be eliminated.
  2382. *4154,A
  2383. Note 4154: Signal 'xxxx' (pin ####) is not used in the design;
  2384. neither the signal nor its pin will be reassigned.
  2385.  
  2386. There is a signal that either wasn't used (input), or had no
  2387. equations (output). If this signal/pin combination does
  2388. not serve some special purpose, the signal should be eliminated.
  2389.  
  2390. *4155,A
  2391. Note 4155: Fitter 'xxxx' is not available; either the fitter was
  2392. not found on your path or you do not have the necessary fitter.
  2393.  
  2394. When attempting to fit a device, the device was denoted as
  2395. requiring the ginve adhoc fitter. However, the fitter
  2396. executable could not be found. Contact the Data I/O Customer
  2397. Resource Center to purchase fitter.
  2398. *4156,A
  2399. Note 4156: Adhoc fitter 'xxxx' is not available; either the name
  2400. is wrong or is is not on your path.
  2401.  
  2402. You specified the name of an alternate fitter as an argument
  2403. to the fitter. However, an executable of that name could not be
  2404. found. Check that the correct name is provided and that it is
  2405. available on your current path.
  2406. *4157,A
  2407. Note 4157: Filename extension on adhoc fitter argument 'xxxx'
  2408. should not be specified and is being ignored.
  2409.  
  2410. Adhoc fitters must be executables, however, even if a special
  2411. extension is used to denote that (such as .exe on DOS), that
  2412. extension should not be provided.
  2413. *4158,A
  2414. Warning 4158: Not enough disk space to swap the FIT program to
  2415. the disk.
  2416.  
  2417. Remove some files from your disk so that more space is available.
  2418. The newfile could not be created, the files may be write protected.
  2419. *4301,A
  2420. Fatal Error 4301: Input file not specified.
  2421.  
  2422. A input pla file must be specified.
  2423. *4302,A
  2424. Fatal Error 4302: Input and Output file names are the same 'xxx'.
  2425.  
  2426. The Input and Output files must have different names.
  2427. *4303,A
  2428. Fatal Error 4303: Input and Log file names are the same 'xxx'.
  2429.  
  2430. The Input and Log files must have different names.
  2431. *4304,A
  2432. Fatal Error 4304: Output and Log file names are the same 'xxx'.
  2433.  
  2434. The Log and Output files must have different names.
  2435. *4305,A
  2436. Fatal Error 4305: Can't open input file 'xxx'.
  2437.  
  2438. The file could not be opened by FIT5032. 
  2439. *4306,A
  2440. Fatal Error 4306: Can't open output file 'xxx'.
  2441.  
  2442. The file cound not be opened by FIT5032 because there was not 
  2443. free space on the disk or a protected file of the same name
  2444. already exists.
  2445. *4307,A
  2446. Fatal Error 4307: Can't open log file 'xxx'.
  2447.  
  2448. The file cound not be opened for appending by FIT5032.
  2449. *4308,A
  2450. Fatal Error 4308: Can't open log file 'xxx'.
  2451.  
  2452. The file cound not be opened by FIT5032 because there was not 
  2453. free space on the disk or a protected file of the same name
  2454. already exists.
  2455. *4310,A
  2456. Fatal Error 4310: Can't open output file 'xxx'.
  2457.  
  2458. The temporary file cound not be opened by FIT5032 because there 
  2459. was not free space on the disk or a protected file of the same 
  2460. name already exists.
  2461. *4311,A
  2462. Fatal Error 4311: Latte failed on 'xxx'.
  2463.  
  2464. The Latte program was not found or did not complete its normal 
  2465. operation.
  2466. *4312,A
  2467. Fatal Error 4312: Can't open input file 'xxx'.
  2468.  
  2469. The temporary file produced by Latte could not be opened by
  2470. FIT5032. This happens when Latte fails to complete it normal
  2471. operation.
  2472. *4313,A
  2473. Logical Error 4313: '##' too many expander terms required.
  2474.  
  2475. The design as expressed was to large or complex.  
  2476.  
  2477.    Try breaking the large equations into multilevel functions
  2478.    and using the buried macrocells.
  2479.  
  2480.    Use an istype 'xor' on all signals that contian XOR expressions.
  2481. *4323,A
  2482. Internal Error 4323: Illegal dot extension.
  2483.  
  2484. The input pla file is defective.
  2485. *4324,A
  2486. Logical Error 4324: Signal 'xxx' has multiple entries in #$ PINS 
  2487. list.
  2488.  
  2489. The input pla file is defective.
  2490. *4325,A
  2491. Logical Error 4325: Ignoring assignment of 'xxx' to '##', not a 
  2492. MacroCell.
  2493.  
  2494. A macrocell pin number as assigned to an input or power pin.
  2495. *4326,A
  2496. Logical Error 4326: Signal 'xxx' has multiple entries in #$ NODES 
  2497. list.
  2498.  
  2499. The input pla file is defective.
  2500. *4327,A
  2501. Logical Error 4327: Ignoring assignment of 'xxx' to '##', not a 
  2502. MacroCell.
  2503.  
  2504. A macrocell node number as assigned to an input or power pin.
  2505. *4328,A
  2506. Logical Error 4328: Pin number '##' for 'xxx' is being ignored.
  2507.  
  2508. The pin number is out of range for this device.
  2509. *4329,A
  2510. Logical Error 4329: Node number '##' for 'xxx' is being ignored.
  2511.  
  2512. The node number is out of range for this device.
  2513. *4330,A
  2514. Logical Error 4330: Signal 'xxx' not allowed as an input for this 
  2515. device.
  2516.  
  2517. While processing equations an ilegal equation was detected.
  2518. *4331,A
  2519. Internal Error 4331: Illegal dot extension.
  2520.  
  2521. The input pla file is defective.
  2522. *4332,A
  2523. Logical Error 4332: Ignoring assignment of 'xxx' to sync clock pin
  2524. '##'.
  2525.  
  2526. The pin number is not the correct clock pin for this device.
  2527. *4333,A
  2528. Logical Error 4333: Ignoring assignment of 'xxx' to '##', a power 
  2529. or ground pin.
  2530.  
  2531. A input or I/O pin number as assigned to power pin.
  2532. *4334,A
  2533. Logical Error 4334: Illegal synchronous clock equation on 'xxx.'.
  2534.  
  2535. Clock equation must be for a single pin, not an expression.
  2536. *4335,A
  2537. Logical Error 4335: Conflicting sync-clock assignment on 'xxx.'.
  2538.  
  2539. 2 or more clock pins were specified.
  2540.  
  2541. *4336,A
  2542. Warning 4336: Synchronous model specified but no clock equation
  2543. found.
  2544.  
  2545. If registers are used in design add a clock equation, if no
  2546. registers are used specify asychronous model (i.e. P5032A).
  2547. *4337,A
  2548. Logical Error 4337: All macrocell pins used, no pin assigned to
  2549. 'xxx'.
  2550.  
  2551. Too many macrocells that are connected to pins were used. If the
  2552. design allows try moving some to buried macrocells, change PIN to
  2553. NODE in signal declarations.
  2554. *4338,A
  2555. Logical Error 4338: All macrocell used, no pin or node assigned to 
  2556. 'xxx'.
  2557.  
  2558. Too many macrocells were used. If the design allows try moving some 
  2559. of the equations to expander terms.
  2560. *4339,A
  2561. Logical Error 4339: All input pins used, no pin assigned to 'xxx'.
  2562.  
  2563. All input and I/O pin were used.  If the design allows try moving 
  2564. some equations to buried macrocells, change PIN to NODE in signal 
  2565. declarations.  Also try using dual feedback to share an I/O pin. 
  2566. *4340,A
  2567. Logical Error 4340: Wrong polarity for signal 'xxx'.
  2568.  
  2569. The equation was active low, rerun PLAOPT with -reduce choose.
  2570. *4342,A
  2571. Logical Error 4342: Input or feedback signal 'xxx' not allowed on 
  2572. output.
  2573.  
  2574. While processing equations an ilegal equation was detected.
  2575. *4343,A
  2576. Logical Error 4343: Output signal 'xxx' not supported for this
  2577. device.
  2578.  
  2579. While processing equations an ilegal equation was detected.
  2580. *4344,A
  2581. Internal Error 4344: Second part of 'xxx' XOR equation not found in 
  2582. pla.
  2583.  
  2584. The input pla file is defective.
  2585. *--Fuseasm--,A
  2586. *5000,A
  2587. Logical Error 5000: xxx.C and xxx.C have inconsistent modes.
  2588.  
  2589. Use either asynchronous or synchronous clock through out the design.
  2590. *5001,A
  2591. Logical Error 5001: xxx pin ## can't be used as output.
  2592.  
  2593. Reassign pin for the equation with a valid output pin.
  2594. *5003,A
  2595. Logical Error 5003: xxx pin ## can't be used as input nor feedback.
  2596.  
  2597. Reassign pin for the input with a valid input/bidir pin.
  2598. *5004,A
  2599. Fatal Error 5004: Pin ## is an illegal assignment for xxx.
  2600.  
  2601. Pin is out of range, try some other device or pin number.
  2602. *5005,A
  2603. Logical Error 5005: xxx pin ## can't be used as registered output.
  2604.  
  2605. Reassign pin for the output with a registered pin.
  2606. *5006,A
  2607. Logical Error 5006: Register of xxx pin ## has no preset.
  2608.  
  2609. Reassign pin for the output with a registered pin with preset.
  2610. *5007,A
  2611. Logical Error 5007: Register of xxx pin ## has no reset.
  2612.  
  2613. Reassign pin for the output with a registered pin with reset.
  2614. *5008,A
  2615. Logical Error 5008: Register of xxx pin ## has no preload.
  2616.  
  2617. Reassign pin for the output with a registered pin with preload.
  2618. *5009,A
  2619. Warning 5009: Register of xxx pin ## has no asynchronous reset.
  2620.  
  2621. Part has Synchronous Reset; Reset may not work as expected.
  2622. *5010,A
  2623. Warning 5010: Register of xxx pin ## has no synchronous reset.
  2624.  
  2625. Part has Asynchronous Reset; Reset may not work as expected.
  2626. *5011,A
  2627. Warning 5011: Register of xxx pin ## has no asynchronous preset.
  2628.  
  2629. Part has Synchronous Preset; Preset may not work as expected.
  2630. *5012,A
  2631. Warning 5012: Register of xxx pin ## has no synchronous preset.
  2632.  
  2633. Part has Asynchronous Preset; Preset may not work as expected.
  2634. *5013,A
  2635. Logical Error 5013: xxx can't be programmed to one-input flip flop
  2636. of pin ##.
  2637.  
  2638. Select a device with the specified flip-flop type.
  2639. *5014,A
  2640. Logical Error 5014: Register of xxx pin ## has no FC line.
  2641.  
  2642. Select a device with Dynamic Register Control feature.
  2643. *5016,A
  2644. Logical Error 5016: xxx can't map to pin ##'s [OE | CK].
  2645.  
  2646. Check the equation for invalid setting of the macrocell.
  2647. *5017,A
  2648. Logical Error 5017: xxx.OE is not allowed on pin ##.
  2649.  
  2650. Select a part with the specified output enable.
  2651. *5018,A
  2652. Logical Error 5018: xxx can't map to OE of pin ##; only VCC or
  2653. GND allowed.
  2654.  
  2655. Select a part with the specified output enable.
  2656. *5019,A
  2657. Logical Error 5019: xxx can't map to OE of pin ## only pin ##
  2658. allowed.
  2659.  
  2660. Modify the OE equation to use the external OE pin.
  2661. *5020,A
  2662. Logical Error 5020: xxx can't map to OE of pin ##; output is
  2663. always enabled.
  2664.  
  2665. Select a part with the specified output enable.
  2666. *5022,A
  2667. Logical Error 5022: Polarity of pin ##'s OE doesn't match with xxx.
  2668.  
  2669. Invert the OE equation.
  2670. *5023,A
  2671. Internal Error 5023: drive_pin(): invalid enable type.
  2672.  
  2673. Contact the Data I/O Customer Resource Center.
  2674. *5024,A
  2675. Logical Error 5024: xxx pin ## is not a registered pin.
  2676.  
  2677. Reassign pin for the output with a registered pin.
  2678. *5025,A
  2679. Logical Error 5025: Status of xxx register has already been set
  2680. for this group.
  2681.  
  2682. Reassign pin for the output with a registered pin.
  2683. *5027,A
  2684. Logical Error 5027: Register of xxx pin ## can't be bypassed.
  2685.  
  2686. Reassign pin for the output with a bypassable registered pin
  2687. *5028,A
  2688. Internal Error 5028: progTerm(): bad node.
  2689.  
  2690. Contact the Data I/O Customer Resource Center.
  2691. *5029,A
  2692. Logical Error 5029: Register type of xxx pin ## is invalid.
  2693.  
  2694. Try other device with the specified flip flop type.
  2695. *5030,A
  2696. Logical Error 5030: Dynamic register type of xxx pin ## requires
  2697. FC equation.
  2698.  
  2699. Write FC equation to use the dynamic register control.
  2700. *5031,A
  2701. Logical Error 5031: FC equation of xxx pin ## must be low to
  2702. use D flip flop.
  2703.  
  2704. Invert the FC equation.
  2705. *5032,A
  2706. Logical Error 5032: Dynamic register type of xxx pin ##
  2707. requires FC equation.
  2708.  
  2709. Write FC equation to use the dynamic register control.
  2710. *5033,A
  2711. Internal Error 5033: pregtype(): invalid register type.
  2712.  
  2713. Contact the Data I/O Customer Resource Center.
  2714. *5034,A
  2715. Internal Error 5034: Process_IC  pSIG for ## is NULL.
  2716.  
  2717. Contact the Data I/O Customer Resource Center.
  2718. *5035,A
  2719. Logical Error 5035: xxx pin ## can't be used as feedback.
  2720.  
  2721. Reassign pin for the feedback with bidir pin.
  2722. *5036,A
  2723. Logical Error 5036: OR feedback is not allowed on xxx pin ##.
  2724.  
  2725. Reassign pin for the feedback with pin that has OR feedback.
  2726. *5037,A
  2727. Logical Error 5037: Registered feedback is not allowed on xxx
  2728. pin ##.
  2729.  
  2730. Reassign pin for the feedback with pin that has Q feedback.
  2731. *5038,A
  2732. Logical Error 5038: Pin feedback is not allowed on xxx pin ##.
  2733.  
  2734. Reassign pin for the feedback with pin that has pin feedback.
  2735. *5039,A
  2736. Logical Error 5039: Too many feedbacks are used on xxx pin ##.
  2737.  
  2738. Check the use of feedbacks in equation with the physical feedback
  2739. paths.
  2740. *5040,A
  2741. Logical Error 5040: Only one feedback is allowed on xxx pin ##.
  2742.  
  2743. Check the use of feedbacks in equation with the physical feedback
  2744. path.
  2745. *5041,A
  2746. Internal Error 5041: term_alloc(): PT is null; signum = ##.
  2747.  
  2748. Contact the Data I/O Customer Resource Center.
  2749. *5042,A
  2750. Logical Error 5042: xxx can't use XOR on pin ##.
  2751.  
  2752. Reassign pin for the output with pin that has 2-input XOR gate.
  2753. *5043,A
  2754. Internal Error 5043: term_alloc(): Pin ddd's TT should have been
  2755. modified.
  2756.  
  2757. Contact the Data I/O Customer Resource Center.
  2758. *5044,A
  2759. Logical Error 5044: ## too many terms for output xxx pin ##.
  2760.  
  2761. Read the Design Consideration chapter in the ABEL manual on Polarity
  2762. Control.
  2763. *5045,A
  2764. Fatal Error 5045: Device file not specified.
  2765.  
  2766. Run fuseasm with -dev <dev_name>; <dev_name> is the targeted device.
  2767. *5046,A
  2768. Fatal Error 5046: Invalid pin number assigned to signal xxx.
  2769.  
  2770. Pin is out of range; try some other device.
  2771. *5047,A
  2772. Fatal Error 5047: Can't open file xxx.
  2773.  
  2774. Maybe out of disk space. Run cleanup4 to make more room in the
  2775. directory.
  2776. *5048,A
  2777. Fatal Error 5048: Unable to close file yyy.
  2778.  
  2779. Maybe out of disk space. Run cleanup4 to make more room in the
  2780. directory.
  2781. *5050,A
  2782. Logical Error 5050: Too many terms used by.
  2783.  
  2784. Read the Design Consideration chapter in the ABEL manual on Polarity
  2785. Control.
  2786. *5051,A
  2787. Internal Error 5051: Internal error: Pin2MC.
  2788.  
  2789. Contact the Data I/O Customer Resource Center.
  2790. *5052,A
  2791. Internal Error 5052: Pin2MC324  Pin ##.
  2792.  
  2793. Contact the Data I/O Customer Resource Center.
  2794. *5053,A
  2795. Internal Error 5053: EP_fixup(): invalid polarity type.
  2796.  
  2797. Contact the Data I/O Customer Resource Center.
  2798. *5054,A
  2799. Logical Error 5054: Polarity of 'xxx.OE' pin ## does not match
  2800. with that of the enable.
  2801.  
  2802. Invert the OE equation.
  2803. *5055,A
  2804. Internal Error 5055: E0600_fixup(): OE has to be a select mux.
  2805.  
  2806. Contact the Data I/O Customer Resource Center.
  2807. *5056,A
  2808. Internal Error 5056: E1800_fixup OE has to be a select mux.
  2809.  
  2810. Contact the Data I/O Customer Resource Center.
  2811. *5057,A
  2812. Warning 5057: Only the first ## signature chars will be programmed.
  2813.  
  2814. Use only one word with -ues <sig_word>.
  2815. *5058,A
  2816. Internal Error 5058: Too many product terms on pin ###.
  2817.  
  2818. Contact the Data I/O Customer Resource Center.
  2819. *5059,A
  2820. Fatal Error 5059: Too many terms used. ## max; try group reduction.
  2821.  
  2822. Read the Design Consideration chapter in the ABEL manual on Polarity
  2823. Control.
  2824. *5060,A
  2825. Internal Error 5060: Too many bits in PROM word.
  2826.  
  2827. Contact the Data I/O Customer Resource Center.
  2828. *5061,A
  2829. Command Error 5061: Invalid output type for PROM ##.
  2830.  
  2831. Use -format with one of the valid type for PROM.
  2832. *5062,A
  2833. Warning 5062: Input/feedback xxxxxx has been reduced out.
  2834.  
  2835. PLAopt has reduced out the input.
  2836. *5063,A
  2837. Logical Error 5063: Input xxx has no 'uncomplemented' array
  2838. connection.
  2839.  
  2840. Invert the input.
  2841. *5064,A
  2842. Logical Error 5064: Input xxx has no 'complement' array connection.
  2843.  
  2844. Invert the input.
  2845. *5065,A
  2846. Logical Error 5065: Local feedback xxxxxx can't be used in
  2847. quadrant ##.
  2848.  
  2849. Use global feedback, i.e. feedback that can feed to any quadrant.
  2850. *5066,A
  2851. Internal Error 5066: Startfuse #### is not start of term.
  2852.  
  2853. Contact the Data I/O Customer Resource Center.
  2854. *5067,A
  2855. Internal Error 5067: Startfuse #### is not in any array.
  2856.  
  2857. Contact the Data I/O Customer Resource Center.
  2858. *5068,A
  2859. Internal Error 5068: fuseinc of array ddd is zero.
  2860.  
  2861. Contact the Data I/O Customer Resource Center.
  2862. *5069,A
  2863. Logical Error 5069: Select mux xxx can't be re-configured.
  2864.  
  2865. Check the equation for conflicting setting of the macrocell.
  2866. *5070,A
  2867. Logical Error 5070: xxx requires pin ## as its input.
  2868.  
  2869. Modify the equation to use the pin as input.
  2870. *5071,A
  2871. Logical Error 5071: Pin ## can't be assigned to xxx.
  2872.  
  2873. Reassign pin for the equation with a valid output pin.
  2874. *5072,A
  2875. Internal Error 5072: rpt_resrc(): Illegal feedback.
  2876.  
  2877. Contact the Data I/O Customer Resource Center.
  2878. *5073,A
  2879. Logical Error 5073: ? not an odd # of pins on side of device for
  2880. PLCC.
  2881.  
  2882. Strange PLCC; ignore the message.
  2883. *5074,A
  2884. Warning 5074: Signal xxx was declared but not used.
  2885.  
  2886. Make sure this is not a mistake.
  2887. *5076,A
  2888. Internal Error 5076: Get_reg_str  bad reg type.
  2889.  
  2890. Contact the Data I/O Customer Resource Center.
  2891. *5078,A
  2892. Fatal Error 5078: Writing to document file xxx.
  2893.  
  2894. Maybe out of disk space. Run cleanup4 to make more room in the
  2895. directory.
  2896. *5079,A
  2897. Internal Error 5079: Missing keyword yyy in xxx.fus.
  2898.  
  2899. Contact the Data I/O Customer Resource Center.
  2900. *5080,A
  2901. Internal Error 5080: ## fuses in a set; exceed ## limit in xxx.fus.
  2902.  
  2903. Contact the Data I/O Customer Resource Center.
  2904. *5081,A
  2905. Internal Error 5081: 'c' expected, 'c' found while reading xxx.fus
  2906.  
  2907. Contact the Data I/O Customer Resource Center.
  2908. *5082,A
  2909. Logical Error 5082: Fuse #### in xxx.fus is out of range.
  2910.  
  2911. Check the fuses statement for invalid fuse numbers.
  2912. *5083,A
  2913. Fatal Error 5083: EOF found when writing X to JEDEC Hex file.
  2914.  
  2915. Maybe out of disk space. Run cleanup4 to make more room in the
  2916. directory.
  2917. *5084,A
  2918. Fatal Error 5084: EOF found when writing X to JEDEC file.
  2919.  
  2920. Maybe out of disk space. Run cleanup4 to make more room in the
  2921. directory.
  2922. *5085,A
  2923. Internal Error 5085: negative jedec number.
  2924.  
  2925. Contact the Data I/O Customer Resource Center.
  2926. *5086,A
  2927. Internal Error 5086: No symbol found in xxx.tmv.
  2928.  
  2929. Contact the Data I/O Customer Resource Center.
  2930. *5087,A
  2931. Warning 5087: Only one feedback is allowed on pin ##; mapping xxx
  2932. to xxx.FB
  2933.  
  2934. Check the feedback for incorrect use by the software
  2935. *5088,A
  2936. Command Error 5088: Programmer load file not specified.
  2937. Use -o <filename>.
  2938.  
  2939. Run fuseasm <in_file> -o <file_name.jed>.
  2940. *5089,A
  2941. Fatal Error 5089: Format code ## is not allowed.
  2942. Use -format default.
  2943.  
  2944. Run fuseasm <in_file> -format default.
  2945. *5090,A
  2946. Internal Error 5090: Illegal character xx found while reading
  2947. xxx.tmv.
  2948.  
  2949. Contact the Data I/O Customer Resource Center.
  2950. *5091,A
  2951. Internal Error 5091: xx expected. xx found while reading xxx.tmv.
  2952.  
  2953. Contact the Data I/O Customer Resource Center.
  2954. *5092,A
  2955. Logical Error 5092: xxx node ## can't use shared feedback.
  2956.  
  2957. Move one of the two equations that use shared feedback to another
  2958. free pin.
  2959. *5095,A
  2960. Logical Error 5095: PR/RE is not allowed for latched output xxx.
  2961.  
  2962. Remove PR/RE equation for latched output.
  2963. *5096,A
  2964. Internal Error 5096: Cluster has been clobbered.
  2965.  
  2966. Contact the Data I/O Customer Resource Center.
  2967. *5097,A
  2968. Fatal Error 5097: Pin ## is an illegal pin assignment for xxx.
  2969.  
  2970. Pin is out of range, try some other device.
  2971. *5098,A
  2972. Fatal Error 5098: PLA file type is not supported.
  2973.  
  2974. Run PLAopt <in_file> -reduce default.
  2975. *5099,A
  2976. Internal Error 5099: Invalid output pin ##.
  2977.  
  2978. Contact the Data I/O Customer Resource Center.
  2979. *5100,A
  2980. Internal Error 5100: Pal_choose bad pin ## index.
  2981.  
  2982. Contact the Data I/O Customer Resource Center.
  2983. *5101,A
  2984. Internal Error 5101: get_node(): illegal extension.
  2985.  
  2986. Contact the Data I/O Customer Resource Center.
  2987. *5102,A
  2988. Warning 5102: Polarity of yyy is not specified. Assume pos
  2989. polarity.
  2990.  
  2991. Output has programmable inversion both before and after register.
  2992. *5103,A
  2993. Warning 5103: Polarity of yyy is not specified. Pin has neg
  2994. polarity.
  2995.  
  2996. Output has fixed inversion after register; it may invert the
  2997. PR/RE output.
  2998. *5104,A
  2999. Internal Error 5104: oe_choose(): bad enable type.
  3000.  
  3001. Contact the Data I/O Customer Resource Center.
  3002. *5105,A
  3003. Internal Error 5105: comb_choose  pSIG ## is null.
  3004.  
  3005. Contact the Data I/O Customer Resource Center.
  3006. *5106,A
  3007. Logical Error 5106: xxx can't map to node ##; wrong polarity.
  3008.  
  3009. Output has fixed polarity type which is different from the equation;
  3010. Run PLAopt with -red default.
  3011. *5107,A
  3012. Logical Error 5107: xxx can't map to pin ##; wrong polarity.
  3013.  
  3014. Output has fixed polarity type which is different from the equation;
  3015. Run PLAopt with -red default.
  3016. *5108,A
  3017. Internal Error 5108: invalid_output_pin(): bad pinty for pin ##.
  3018.  
  3019. Contact the Data I/O Customer Resource Center.
  3020. *5109,A
  3021. Logical Error 5109: xxx istype 'BUFFER' is not allowed on pin ##.
  3022.  
  3023. Select a device with no or programmable inversions.
  3024. *5110,A
  3025. Logical Error 5110: xxx istype 'INVERT' is not allowed on pin ##.
  3026.  
  3027. Select a device with fixed or programmable inversions.
  3028. *5111,A
  3029. Logical Error 5111: PR/RE is not allowed for combinatorial
  3030. output xxx.
  3031.  
  3032. Modify to the primary equation to be registered.
  3033. *5112,A
  3034. Logical Error 5112: xxx.XR can't be used with xxx.T.
  3035.  
  3036. XOR is required to perform D-T emulation.
  3037. *5113,A
  3038. Command Error 5113: No input file specified.
  3039.  
  3040. Run fuseasm with a valid PLA file.
  3041. *5114,A
  3042. Logical Error 5114: Input to register xxx can only be from pin ##.
  3043.  
  3044. Check the equation for improper input register assignment.
  3045. *5115,A
  3046. Command Error 5115: Illegal use of options.
  3047.  
  3048. Check the command line options for illegal flags.
  3049. *--JED/PLAsim--,A
  3050. *6001,A
  3051. Warning 6001: Device not supported by simulator.
  3052.  
  3053. The current version of JEDSIM doesn't support this device.
  3054. Simulate the design with PLASIM.
  3055.  
  3056. *6002,A
  3057. Fatal Error 6002: Error writing to output.
  3058.  
  3059. The disk does not have enough free space to contain the file
  3060. being written.
  3061.  
  3062. *6003,A
  3063. Fatal Error 6003: Input file not specified.
  3064.  
  3065. A JEDEC file is expected as the input to JEDSIM.
  3066.  
  3067. *6004,A
  3068. Fatal Error 6004: Could not open input file xxx.
  3069.  
  3070. The indicated file could not be opened by JEDSIM.  If the
  3071. indicated file exists, check to make sure that it has the
  3072. appropriate file protection settings to enable you to access it.
  3073.  
  3074. *6005,A
  3075. Fatal Error 6005: Could not open output file xxx.
  3076.  
  3077. The file could not be opened by JEDSIM because there was not
  3078. free space on the disk or a protected file of the same name
  3079. already exists.
  3080.  
  3081. *6006,A
  3082. Fatal Error 6006: Device type must be specified.
  3083.  
  3084. The ABEL device type must be specified on the command line if
  3085. the JEDEC file does not have the device type in the header.
  3086. For example, to specify a P16R8 device type add "-device P16R8"
  3087. to the command line.
  3088.  
  3089. The JEDEC file header could be modified to include the following
  3090. text string:  "JEDEC file for: P16R8".
  3091.  
  3092. *6007,A
  3093. Fatal Error 6007: Could not open vector file xxx.
  3094.  
  3095. The ".tmv" vector file produced by AHDL2PLA could not be opened.
  3096. If it was deleted, rerun AHDL2PLA to recreate it.
  3097.  
  3098. *6029,A
  3099. Fatal Error 6029: Single number expected in '-signal' xxx
  3100.  
  3101. A valid decimal number was not found after the "-signal" option.
  3102. The ABEL 3.x range (14..17) is not supported.
  3103.  
  3104. *6030,A
  3105. Fatal Error 6030: No breakpoint vector number(s) found.
  3106.  
  3107. A valid decimal number was not found after the "-break" option.
  3108.  
  3109. *6031,A
  3110. Fatal Error 6031: No signals found in '-signal' list.
  3111.  
  3112. No signal names or numbers were found after the "-signal" option.
  3113.  
  3114. *6032,A
  3115. Warning 6032: '-signal' signal xxx not found in device.
  3116.  
  3117. The signal xxx was not found in the device.  The names are case
  3118. sensitive.
  3119.  
  3120. *6033,A
  3121. Warning 6033: No matching signals found in '-signal' list, using
  3122. defaults.
  3123.  
  3124. No matching signals were found.
  3125.  
  3126. *6034,A
  3127. Fatal Error 6034: File name too long xxx.
  3128.  
  3129. The indicated file name is too long.
  3130.  
  3131. *6035,A
  3132. Fatal Error 6035: Reading input part of test vector.
  3133.  
  3134. The .tmv test vector file is defective.
  3135.  
  3136. *6036,A
  3137. Fatal Error 6036: Reading test vector '->'.
  3138.  
  3139. The .tmv test vector file is defective.
  3140.  
  3141. *6037,A
  3142. Fatal Error 6037: Reading output part of test vector.
  3143.  
  3144. The .tmv test vector file is defective.
  3145.  
  3146. *6038,A
  3147. Fatal Error 6038: Reading test vector ';'.
  3148.  
  3149. The .tmv test vector file is defective.
  3150.  
  3151. *6051,A
  3152. Fatal Error 6051: Multiple .C, .LE or .LH specified for xxx.
  3153.  
  3154. Only one clock input is allowed for a register.  Remove the
  3155. unnecessary equation and reprocess the design.
  3156.  
  3157. *6052,A
  3158. Warning 6052: Second part of xxx XOR equation not found in PLA.
  3159.  
  3160. Two parts of a XOR equation must be present, indicated with a
  3161. .X1 and .X2 suffix.  This defective PLA file was missing one
  3162. part of the XOR equation.
  3163.  
  3164. *6054,A
  3165. Warning 6054: No clock equation found for xxx.
  3166.  
  3167. PLASIM requires a clock equation for each registered equation.
  3168.  
  3169. *6055,A
  3170. Fatal Error 6055: Incomplete design, can not simulate.
  3171.  
  3172. Information required by PLASIM was missing from the PLA file.
  3173.  
  3174. *6056,A
  3175. Fatal Error 6056: Input file not specified.
  3176.  
  3177. A PLA file is expected as the input to PLASIM.
  3178.  
  3179. *6057,A
  3180. Fatal Error 6057: Could not open input file xxx.
  3181.  
  3182. *6058,A
  3183. Fatal Error 6058: Default output name requires input file with
  3184. a .TTn extension.
  3185.  
  3186. *6059,A
  3187. Fatal Error 6059: Could not open output file xxx.
  3188.  
  3189. The disk does not have enough free space to contain the file
  3190. being written.
  3191.  
  3192. *6060,A
  3193. Fatal Error 6060: Vector file not specified.
  3194.  
  3195. A ".tmv" test vector file must be specified on the command line
  3196. with the "-ivector" option or in the PLA file with a "VECTORFILE"
  3197. comment.
  3198.  
  3199. *6061,A
  3200. Fatal Error 6061: Could not open vector file xxx.
  3201.  
  3202. The ".tmv" vector file produced by AHDL2PLA could not be opened by
  3203. PLASIM.  If it was deleted, rerun AHDL2PLA to recreate it.
  3204.  
  3205. *6062,A
  3206. Fatal Error 6062: Could not open input file xxx.
  3207.  
  3208. The ".tt0" PLA file produced by could AHDL2PLA not be opened by
  3209. PLASIM.  If it was deleted, rerun AHDL2PLA to recreate it.
  3210.  
  3211. *6063,A
  3212. Fatal Error 6063: Could not open output file xxx.
  3213.  
  3214. The indicated working file could not be opened by PLASIM.
  3215.  
  3216. *6064,A
  3217. Fatal Error 6064: Could not open input file xxx.
  3218.  
  3219. The indicated working file could not be opened by PLASIM.
  3220.  
  3221. *6065,A
  3222. Fatal Error 6065: PLA has ## signals, the limit is ##.
  3223.  
  3224. The number of input and output signals in the PLA file exceed
  3225. the maximum allowed in PLASIM.
  3226.  
  3227. *6066,A
  3228. Internal Error 6066: Unknown extension xxx on pla output.
  3229.  
  3230. The pla file is defective.
  3231.  
  3232. *6100,A
  3233. Warning 6100: Skipping unknown JEDEC field xx.
  3234.  
  3235. A reserved field identifier was used.
  3236.  
  3237. *6101,A
  3238. Fatal Error 6101: L field address exceeds fuse limit ##.
  3239.  
  3240. The fuses specified in the L field exceeded the maximum
  3241. allowable fuses address for the device.  This error could
  3242. be caused by selecting the wrong device.
  3243.  
  3244. *6102,A
  3245. Fatal Error 6102: Fuse address ## exceeds fuse limit ##.
  3246.  
  3247. While processing a string of fuses in a L field, the calculated
  3248. fuse address exceeded the maximum allowable fuses address for the
  3249. device.  This error could be caused by selecting the wrong device.
  3250.  
  3251. *6103,A
  3252. Fatal Error 6103: Illegal fuse state xx at fuse address ##.
  3253.  
  3254. The allowable fuse states for a L field are "1" and "0".
  3255.  
  3256. *6104,A
  3257. Fatal Error 6104: H field address exceeds fuse limit ##.
  3258.  
  3259. The fuses specified in the H field exceeded the maximum
  3260. allowable fuses address for the device.  This error could
  3261. be caused by selecting the wrong device.
  3262.  
  3263. *6105,A
  3264. Fatal Error 6105: Fuse address ## exceeds fuse limit ##.
  3265.  
  3266. While processing a string of fuses in a H field, the calculated
  3267. fuse address exceeded the maximum allowable fuses address for the
  3268. device.  This error could be caused by selecting the wrong device.
  3269.  
  3270. *6106,A
  3271. Fatal Error 6106: Illegal fuse state xx at fuse address ##.
  3272.  
  3273. The allowable fuse states for a H field are "0" through "9"
  3274. and "A" through "F".
  3275.  
  3276. *6107,A
  3277. Fatal Error 6107: Illegal default fuse state xx.
  3278.  
  3279. The allowable default fuse states are "0" and "1".
  3280.  
  3281. *6108,A
  3282. Warning 6108: Illegal default test condition xx.
  3283.  
  3284. The allowable default test conditions are "0" and "1".
  3285.  
  3286. *6109,A
  3287. Fatal Error 6109: QF value ## incorrect, ## fuses expected.
  3288.  
  3289. The number of fuses specified in the JEDEC QF field doesn't agree
  3290. with the device file.
  3291.  
  3292. *6110,A
  3293. Fatal Error 6110: QP value ## incorrect, '##' pins expected.
  3294.  
  3295. The number of pins specified in the JEDEC QP field doesn't agree
  3296. with the device file.
  3297.  
  3298. *6111,A
  3299. Fatal Error 6111: QV value ## is to large, '##' vectors allowed.
  3300.  
  3301. The MS-DOS version is limited to 65000 bytes of memory for test
  3302. vector storage.  This means a 24 pin device can have 2708 vectors
  3303. and a 68 pin device can have 955 vectors.
  3304.  
  3305. *6112,A
  3306.  
  3307. Warning 6112: File Fuse Checksum = ####  RAM Fuse Checksum = ####.
  3308.  
  3309. The calculated fuse checksum didn't match the value in the C field.
  3310.  
  3311. *6114,A
  3312. Warning 6114: Hex number expected.
  3313.  
  3314. Allowed hexadecimal digits are "0" through "1" and "A" through "F".
  3315.  
  3316. *6115,A
  3317. Warning 6115: Hex number too large.
  3318.  
  3319. Hexadecimal number was to large, normal limit is 4 digits.
  3320.  
  3321. *6116,A
  3322. Fatal Error 6116: Expecting end of field character '*'.
  3323.  
  3324. The field had extra characters.
  3325.  
  3326. *6117,A
  3327. Warning 6117: Vector ## is out of sequence.
  3328.  
  3329. A test vector was missing or out of sequence.
  3330.  
  3331. *6118,A
  3332. Warning 6118: Wrong number of test conditions in vector ##.
  3333.  
  3334. The test vectors should have the same number of test conditions
  3335. as the QP field.
  3336.  
  3337. *6119,A
  3338. Warning 6119: PIN or NODE xxx has invalid or missing number.
  3339.  
  3340. The PIN and NODE note fields require a number for each signal.
  3341.  
  3342. *6120,A
  3343. Warning 6120: Pin or node ## has multiple names xxx and yyy.
  3344.  
  3345. The PIN and NODE note fields require a unique number for each
  3346. signal.
  3347. *--JED2AHDL--,A
  3348. *6500,A
  3349. Fatal Error 6500:  Input file not specified.
  3350.  
  3351. No input JEDEC file was specified on the command line.
  3352. *6501,A
  3353. Fatal Error 6501:  Could not open input file 'xxxx'.
  3354.  
  3355. The indicated file could not be opened by JED2AHDL. If the file
  3356. exists, check to make sure that it has the appropriate file
  3357. protection settings to enable you to access it.
  3358.  
  3359. *6502,A
  3360. Fatal Error 6502:  Could not open output file 'xxxx'.
  3361.  
  3362. The indicated file could not be opened for write. Check that
  3363. you have available disk space, the specified path is valid, and
  3364. the file directory protection allows you write access.
  3365.  
  3366. *6503,A
  3367. Fatal Error 6503:  Device type must be specified.
  3368.  
  3369. There is no device name specified in the JEDEC file.  You must
  3370. specify a device name on the command line in this case.
  3371. *6504,A
  3372. Fatal Error 6504:  Could not open report file 'xxxx'.
  3373.  
  3374. The indicated file could not be opened for write.  Check that
  3375. you have available disk space, the specified path is valid,
  3376. and the file directory protection allows you write access.
  3377. *6505,A
  3378. Logical Error 6505:  PROMs are not supported by JED2AHDL.
  3379.  
  3380. JED2AHDL cannot translate PROM devices.
  3381. *6506,A
  3382. Logical Error 6506:  Device not supported by JED2AHDL.
  3383.  
  3384. This device cannot be translated by JED2AHDL.  This usually
  3385. means that the device contains some complex feature that is
  3386. not supported in the JED2AHDL translator.
  3387. *6507,A
  3388. Internal Error 6507:
  3389.  
  3390. An internal program error has occurred. Contact the Data I/O
  3391. Customer Resource Center.
  3392. *6508,A
  3393. Fatal Error 6508:  Error writing to disk.
  3394.  
  3395. Check that disk space is available, and that the directory is
  3396. not write protected.
  3397. *6509,A
  3398. Logical Error 6509: unknown f/f type 'nn' on pin 'nn'.
  3399.  
  3400. A flip-flop type was encountered that is not known to JED2AHDL.
  3401. Contact the Data I/O Customer Resource Center.
  3402. *6510,A
  3403. Fatal Error 6510:  Could not rename 'xxxx' to 'yyyy'.
  3404.  
  3405. If an ABEL source file exists that has the same name as the
  3406. source file that JED2AHDL will create, it renames the existing
  3407. file to "name.bak". This error indicates the rename failed.
  3408. This is usually indicative of a file protection problem.
  3409.  
  3410. *--PLDgrade--,A
  3411. *7001,A
  3412. Fatal Error 7001: Bad Vector(s) detected - AFSIM abort
  3413.  
  3414. Bad vectors detected in good device simulation. Rerun jedsim to
  3415. make sure all vectors passed.
  3416. *7002,A
  3417. Fatal Error 7002: Cannot open tmpfile
  3418.  
  3419. AFSIM cannot open temporay file during fault simulation.
  3420. Check disk space, read/write protection and FILE command (DOS).
  3421. *7003,A
  3422. Fatal Error 7003: Device not supported by AFSIM fault simulator.
  3423.  
  3424. The current version of AFSIM doesn't support this device.
  3425. *7004,A
  3426. Fatal Error 7004: Error writing to output.
  3427.  
  3428. The file could not be opened by AFSIM because there was not
  3429. free space on the disk or a protected file of the same name
  3430. already exists.
  3431. *7006,A
  3432. Fatal Error 7006: Input file not specified.
  3433.  
  3434. A JEDEC file is expected as the input to AFSIM.
  3435. *7007,A
  3436. Fatal Error 7007: Could not open input file 'xxxx'.
  3437.  
  3438. The indicated file could not be opened by AFSIM.  If the
  3439. indicated file exists, check to make sure that it has the
  3440. appropriate file protection settings to enable you to access it.
  3441. *7008,A
  3442. Fatal Error 7008: Device type must be specified.
  3443.  
  3444. The ABEL device type must be specified on the command line if
  3445. the JEDEC file does not have the device type in the header.
  3446. For example, to specify a P16R8 device type add "-device P16R8"
  3447. to the command line.
  3448.  
  3449. The JEDEC file header could be modified to include the following
  3450. text string:  "JEDEC file for: P16R8".
  3451. *7009,A
  3452. Fatal Error 7009: Could not open vector file 'xxxx'.
  3453.  
  3454. The ".tmv" vector file produced by AHDL2PLA could not be opened.
  3455. If it was deleted, rerun AHDL2PLA to recreate it.
  3456. *7010,A
  3457. Fatal Error 7010: Could not open output file 'xxxx'.
  3458.  
  3459. The file could not be opened by AFSIM because there was not
  3460. free space on the disk or a protected file of the same name
  3461. already exists.
  3462. *7011,A
  3463. Fatal Error 7011: Reading test vector
  3464.  
  3465. The .tmv test vector file is defective.
  3466. *7101,A
  3467. Internal Error 7101: Unrecognizable Fault type 001
  3468.  
  3469. Contact the Data I/O Customer Resource Center.
  3470. *7102,A
  3471. Internal Error 7102: Unrecognized fault type 002
  3472.  
  3473. Contact the Data I/O Customer Resource Center.
  3474. *7103,A
  3475. Internal Error 7103: Unrecognized fault type 003
  3476.  
  3477. Contact the Data I/O Customer Resource Center.
  3478. *7104,A
  3479. Internal Error 7104: Unrecognized gatetype 004
  3480.  
  3481. Contact the Data I/O Customer Resource Center.
  3482. *7105,A
  3483. Internal Error 7105: Unrecognized fault type 005
  3484.  
  3485. Contact the Data I/O Customer Resource Center.
  3486. *7110,A
  3487. Internal Error 7110: Unrecognized fault type 010
  3488.  
  3489. Contact the Data I/O Customer Resource Center.
  3490. *7111,A
  3491. Internal Error 7111: Unrecognized fault type 011
  3492.  
  3493. Contact the Data I/O Customer Resource Center.
  3494. *Errors Help,A
  3495. --AHDL2PLA--
  3496. 1000
  3497. 1001
  3498. 1002
  3499. 1003
  3500. 1004
  3501. 1005
  3502. 1006
  3503. 1007
  3504. 1008
  3505. 1009
  3506. 1010
  3507. 1011
  3508. 1012
  3509. 1013
  3510. 1014
  3511. 1015
  3512. 1016
  3513. 1017
  3514. 1018
  3515. 1019
  3516. 1020
  3517. 1021
  3518. 1022
  3519. 1023
  3520. 1024
  3521. 1025
  3522. 1026
  3523. 1027
  3524. 1028
  3525. 1029
  3526. 1030
  3527. 1031
  3528. 1032
  3529. 1033
  3530. 1034
  3531. 1035
  3532. 1036
  3533. 1037
  3534. 1038
  3535. 1039
  3536. 1040
  3537. 1041
  3538. 1042
  3539. 1043
  3540. 1045
  3541. 1046
  3542. 1047
  3543. 1048
  3544. 1049
  3545. 1050
  3546. 1051
  3547. 1052
  3548. 1053
  3549. 1054
  3550. 1055
  3551. 1056
  3552. 1057
  3553. 1058
  3554. 1059
  3555. 1060
  3556. 1061
  3557. 1062
  3558. 1063
  3559. 1064
  3560. 1065
  3561. 1066
  3562. 1067
  3563. 1068
  3564. 1069
  3565. 1070
  3566. 1071
  3567. 1072
  3568. 1073
  3569. 1074
  3570. 1076
  3571. 1077
  3572. 1078
  3573. 1079
  3574. 1080
  3575. 1081
  3576. 1082
  3577. 1084
  3578. 1085
  3579. 1086
  3580. 1087
  3581. 1091
  3582. 1092
  3583. 1093
  3584. 1094
  3585. 1096
  3586. 1098
  3587. 1099
  3588. 1100
  3589. 1101
  3590. 1102
  3591. 1103
  3592. 1104
  3593. 1105
  3594. 1109
  3595. 1110
  3596. 1111
  3597. 1113
  3598. 1114
  3599. 1116
  3600. 1120
  3601. 1121
  3602. 1122
  3603. 1124
  3604. 1126
  3605. 1128
  3606. 1129
  3607. 1130
  3608. 1131
  3609. 1132
  3610. 1133
  3611. 1134
  3612. 1135
  3613. --PLAopt--
  3614. 2001
  3615. 2002
  3616. 2003
  3617. 2004
  3618. 2005
  3619. 2006
  3620. 2007
  3621. 2008
  3622. 2009
  3623. 2010
  3624. 2011
  3625. 2012
  3626. 2013
  3627. 2014
  3628. 2015
  3629. 2016
  3630. 2017
  3631. 2019
  3632. 2020
  3633. 2021
  3634. 2022
  3635. 2023
  3636. 2024
  3637. 2025
  3638. 2026
  3639. 2027
  3640. 2028
  3641. 2029
  3642. 2030
  3643. 2031
  3644. 2032
  3645. 2033
  3646. 2034
  3647. 2035
  3648. 2036
  3649. 2037
  3650. 2038
  3651. 2039
  3652. 2040
  3653. 2041
  3654. --Selector--
  3655. 3000
  3656. 3012
  3657. 3013
  3658. 3014
  3659. 3016
  3660. 3018
  3661. 3022
  3662. 3026
  3663. 3027
  3664. 3028
  3665. 3029
  3666. 3030
  3667. 3031
  3668. 3032
  3669. 3033
  3670. 3034
  3671. 3035
  3672. 3036
  3673. 3074
  3674. 3075
  3675. 3076
  3676. 3077
  3677. 3080
  3678. 3081
  3679. 3082
  3680. 3083
  3681. 3084
  3682. 3085
  3683. 3086
  3684. 3088
  3685. 3089
  3686. 3090
  3687. 3094
  3688. 3098
  3689. 3099
  3690. 3100
  3691. 3101
  3692. 3102
  3693. 3107
  3694. 3110
  3695. 3111
  3696. 3130
  3697. 3137
  3698. 3141
  3699. 3165
  3700. 3168
  3701. 3171
  3702. 3172
  3703. 3173
  3704. 3175
  3705. 3200
  3706. 3216
  3707. 3220
  3708. 3261
  3709. 3270
  3710. 3271
  3711. 3272
  3712. 3273
  3713. 3276
  3714. 3277
  3715. 3278
  3716. 3280
  3717. 3330
  3718. 3331
  3719. 3335
  3720. 3340
  3721. 3344
  3722. 3346
  3723. 3354
  3724. 3370
  3725. 3371
  3726. 3372
  3727. 3373
  3728. 3374
  3729. 3375
  3730. 3376
  3731. 3377
  3732. 3381
  3733. 3382
  3734. 3383
  3735. 3385
  3736. 3391
  3737. 3394
  3738. 3401
  3739. 3403
  3740. 3407
  3741. 3414
  3742. 3415
  3743. 3416
  3744. 3417
  3745. 3420
  3746. 3421
  3747. 3424
  3748. 3425
  3749. 3426
  3750. 3427
  3751. 3428
  3752. 3429
  3753. 3430
  3754. 3431
  3755. 3439
  3756. 3446
  3757. 3449
  3758. 3450
  3759. 3455
  3760. 3456
  3761. 3457
  3762. 3459
  3763. 3460
  3764. 3463
  3765. 3467
  3766. 3468
  3767. 3480
  3768. 3481
  3769. 3482
  3770. 3483
  3771. 3485
  3772. --Fitter--
  3773. 4000
  3774. 4002
  3775. 4003
  3776. 4004
  3777. 4005
  3778. 4006
  3779. 4007
  3780. 4009
  3781. 4010
  3782. 4011
  3783. 4012
  3784. 4013
  3785. 4014
  3786. 4015
  3787. 4016
  3788. 4017
  3789. 4018
  3790. 4019
  3791. 4020
  3792. 4021
  3793. 4023
  3794. 4024
  3795. 4025
  3796. 4026
  3797. 4027
  3798. 4028
  3799. 4029
  3800. 4030
  3801. 4031
  3802. 4032
  3803. 4033
  3804. 4034
  3805. 4035
  3806. 4036
  3807. 4037
  3808. 4038
  3809. 4039
  3810. 4040
  3811. 4041
  3812. 4042
  3813. 4043
  3814. 4044
  3815. 4045
  3816. 4046
  3817. 4047
  3818. 4049
  3819. 4050
  3820. 4051
  3821. 4052
  3822. 4053
  3823. 4054
  3824. 4055
  3825. 4056
  3826. 4057
  3827. 4058
  3828. 4059
  3829. 4060
  3830. 4061
  3831. 4062
  3832. 4063
  3833. 4064
  3834. 4065
  3835. 4066
  3836. 4067
  3837. 4068
  3838. 4069
  3839. 4070
  3840. 4071
  3841. 4072
  3842. 4073
  3843. 4074
  3844. 4075
  3845. 4076
  3846. 4077
  3847. 4078
  3848. 4079
  3849. 4080
  3850. 4081
  3851. 4083
  3852. 4084
  3853. 4085
  3854. 4086
  3855. 4087
  3856. 4088
  3857. 4089
  3858. 4090
  3859. 4091
  3860. 4092
  3861. 4093
  3862. 4094
  3863. 4095
  3864. 4096
  3865. 4097
  3866. 4098
  3867. 4099
  3868. 4101
  3869. 4102
  3870. 4103
  3871. 4104
  3872. 4105
  3873. 4106
  3874. 4107
  3875. 4108
  3876. 4109
  3877. 4110
  3878. 4111
  3879. 4112
  3880. 4113
  3881. 4114
  3882. 4115
  3883. 4116
  3884. 4117
  3885. 4118
  3886. 4119
  3887. 4120
  3888. 4121
  3889. 4122
  3890. 4123
  3891. 4124
  3892. 4125
  3893. 4126
  3894. 4127
  3895. 4128
  3896. 4129
  3897. 4130
  3898. 4131
  3899. 4132
  3900. 4133
  3901. 4134
  3902. 4135
  3903. 4136
  3904. 4151
  3905. 4152
  3906. 4153
  3907. 4154
  3908. 4155
  3909. 4156
  3910. 4157
  3911. 4158
  3912. 4301
  3913. 4302
  3914. 4303
  3915. 4304
  3916. 4305
  3917. 4306
  3918. 4307
  3919. 4308
  3920. 4310
  3921. 4311
  3922. 4312
  3923. 4313
  3924. 4323
  3925. 4324
  3926. 4325
  3927. 4326
  3928. 4327
  3929. 4328
  3930. 4329
  3931. 4330
  3932. 4331
  3933. 4332
  3934. 4333
  3935. 4334
  3936. 4335
  3937. 4336
  3938. 4337
  3939. 4338
  3940. 4339
  3941. 4340
  3942. 4342
  3943. 4343
  3944. 4344
  3945. --Fuseasm--
  3946. 5000
  3947. 5001
  3948. 5003
  3949. 5004
  3950. 5005
  3951. 5006
  3952. 5007
  3953. 5008
  3954. 5009
  3955. 5010
  3956. 5011
  3957. 5012
  3958. 5013
  3959. 5014
  3960. 5016
  3961. 5017
  3962. 5018
  3963. 5019
  3964. 5020
  3965. 5022
  3966. 5023
  3967. 5024
  3968. 5025
  3969. 5027
  3970. 5028
  3971. 5029
  3972. 5030
  3973. 5031
  3974. 5032
  3975. 5033
  3976. 5034
  3977. 5035
  3978. 5036
  3979. 5037
  3980. 5038
  3981. 5039
  3982. 5040
  3983. 5041
  3984. 5042
  3985. 5043
  3986. 5044
  3987. 5045
  3988. 5046
  3989. 5047
  3990. 5048
  3991. 5050
  3992. 5051
  3993. 5052
  3994. 5053
  3995. 5054
  3996. 5055
  3997. 5056
  3998. 5057
  3999. 5058
  4000. 5059
  4001. 5060
  4002. 5061
  4003. 5062
  4004. 5063
  4005. 5064
  4006. 5065
  4007. 5066
  4008. 5067
  4009. 5068
  4010. 5069
  4011. 5070
  4012. 5071
  4013. 5072
  4014. 5073
  4015. 5074
  4016. 5076
  4017. 5078
  4018. 5079
  4019. 5080
  4020. 5081
  4021. 5082
  4022. 5083
  4023. 5084
  4024. 5085
  4025. 5086
  4026. 5087
  4027. 5088
  4028. 5089
  4029. 5090
  4030. 5091
  4031. 5092
  4032. 5095
  4033. 5096
  4034. 5097
  4035. 5098
  4036. 5099
  4037. 5100
  4038. 5101
  4039. 5102
  4040. 5103
  4041. 5104
  4042. 5105
  4043. 5106
  4044. 5107
  4045. 5108
  4046. 5109
  4047. 5110
  4048. 5111
  4049. 5112
  4050. 5113
  4051. 5114
  4052. 5115
  4053. --JED/PLAsim--
  4054. 6001
  4055. 6002
  4056. 6003
  4057. 6004
  4058. 6005
  4059. 6006
  4060. 6007
  4061. 6029
  4062. 6030
  4063. 6031
  4064. 6032
  4065. 6033
  4066. 6034
  4067. 6035
  4068. 6036
  4069. 6037
  4070. 6038
  4071. 6051
  4072. 6052
  4073. 6054
  4074. 6055
  4075. 6056
  4076. 6057
  4077. 6058
  4078. 6059
  4079. 6060
  4080. 6061
  4081. 6062
  4082. 6063
  4083. 6064
  4084. 6065
  4085. 6066
  4086. 6100
  4087. 6101
  4088. 6102
  4089. 6103
  4090. 6104
  4091. 6105
  4092. 6106
  4093. 6107
  4094. 6108
  4095. 6109
  4096. 6110
  4097. 6111
  4098. 6112
  4099. 6114
  4100. 6115
  4101. 6116
  4102. 6117
  4103. 6118
  4104. 6119
  4105. 6120
  4106. --JED2AHDL--
  4107. 6500
  4108. 6501
  4109. 6502
  4110. 6503
  4111. 6504
  4112. 6505
  4113. 6506
  4114. 6507
  4115. 6508
  4116. 6509
  4117. 6510
  4118. --PLDgrade--
  4119. 7001
  4120. 7002
  4121. 7003
  4122. 7004
  4123. 7006
  4124. 7007
  4125. 7008
  4126. 7009
  4127. 7010
  4128. 7011
  4129. 7101
  4130. 7102
  4131. 7103
  4132. 7104
  4133. 7105
  4134. 7110
  4135. 7111
  4136.