pld设计问答(编辑修改稿)内容摘要:
esults in a less reliable design. A mon technique to remove gated clock is to make use of the clock enable pin of the flipflop. For example, if you have a signal clko = clki amp。 a amp。 b driving the clock pin of a flipflop, you can eliminate the gated clock by feeding clki directly to the FF clock pin, and have another signal en = a amp。 b connected to the clock enable pin of the FF. ( 参考译文:在现代高速数字设计当中 , 不建议使用组合逻辑门控时钟信号 , 因为这将会在选通的时钟信号上产生短时脉冲波形干扰 , 导致错误触发 flipflop. 这是缺乏可靠性的设计 . 移除门控时钟通常所采用的技巧是使用 flipflop 的时钟使能引脚 . 例如 , 如果有一个信号 clko = clki amp。 a amp。 b 正在驱动 flipflop的时钟引脚 , 则可以通过直接将clki传递给 FF 时钟引脚 , 并将另一个信号 en = a amp。 b 与 FF的时钟使能引脚连接 , 来消除门控时钟 . ) By removing the gated clock, you no longer have the problem of clock delay. Also the design is more robust. (移除门控时钟后 , 就不再有时钟延迟的问题了 . 而且这种设计也比较可靠 . ) 30. FPGA生产产商提供了 IP, 如何用第三方软件 , 如 Advantage 或 ACTIVE vhdl, 调用并进行仿真。 答: The IPs provided by Xilinx, e. g. PCI, e with simulation models which can be processed by 3rd part simulation tools like Modelsim. So there is no problem for functional simulation. Timing simulation can be done by exporting the postlayout vhdl/verilog model from Xilinx ISE software. In some cases, sample testbenches are also included. (参考译文: Xilinx提供的 IP, 例如 PCI, 是与仿真模型一同提供的 , 这种模型可由第三方仿真工具 , 如Modelsim 来处理 . 因此对功能仿真来说 , 没有问题 . 通过从 Xilinx ISE 软件中导出postlayout vhdl/verilog可以执行定时仿真 . 在某些情况下 , 也包括样本测试平台 . ) 31. “ As a good design practice, never use gate delay to implement your delay logic under all circumstances” . Please tell me what does gate delay(闸 ) mean?(“一个好的设计 , 在所有情况下都决不会使用门延迟来实现延迟逻辑 . ”此处“门延迟”是什么意思。 ) 答: “ By gate delay I mean using a series of logic gates to introduce certain amount of delay in the design. This is highly undesirable since gate delay changes with factors like temperature and process technology. The design may fail as temperature changes or using a different version silicon. Also designs relying on gate delay are not portable, meaning that you need to redesign the whole circuit whenever you want to change to another product series or part number, simply because the gate delay changes as well. (参考译文:“门延迟”指得是使用一系列逻辑门将一定数量的延迟导入到设计中 . 既然门延迟更改像温度和处理技术这样的因素 , 所以 , 这是很不合适的 . 由于温度的改变或使用不同版本的芯片 , 设计可能会失败 . 依赖门延迟的设计也不是可移植的 , 也就是说 , 要更改另一产品系列或部件号时 , 需要重新设计整个电路 , 只因为更改了门延迟 . ) Always use fully synchronous design. You never need to reply on gate delay if your design is fully synchronous. (始终使用完全同步设计 . 如果设计是全同步的 , 则无需回应门延迟 . ) 32. This time I download another program to another chip SpartanII XC2S50PQ208 in another circuit, while it fails, and show the following message: . . . Checking boundaryscan chain integrity. . . ERROR:JTag Boundaryscan chain test failed at bit position 39。 339。 on instance 39。 ***39。 (a substitute for the real name of file). A problem may exist in the hardware configuration. Check that the cable, scan chain, and power connections are intact, that the specified scan chain configuration matches the actual hardware, and that the power supply is adequate and delivering the correct voltage. ERROR:JTag Boundary scan chain has been improperly specified. Please check your configuration and reenter the boundaryscan chain information. Boundaryscan chain validated unsuccessfully. ERROR:JTag : The boundaryscan chain has not been declared correctly. Verify the syntax and correctness of the device BSDL files, correct the files, reset the cable and retry this mand. With so many messages, I don39。 t know what to do! I try many times but only fail, and doubt whether there is something wrong with the circuit?But the powers checked in circuit are right. Would you please give me some advice to crack the problem?(有一次 , 将程序下载至 SpartanII XC2S50PQ208 芯片电路 , 结果发生了故障 , 并显示以下消息:“ . . . Checking boundaryscan chain integrity. . . ERROR:JTag Boundaryscan chain test failed at bit position 39。 339。 on instance 39。 ***39。 (实际的文件名 )” . 问题可能在硬件配置 . 检查了连线、扫描链路和电源接头都没有问题 . 特定的扫描链路配置与实际的硬件相 匹配 , 电源充足且 电压正常 . “ ERROR:JTag Boundary scan chain has been improperly specified. Please check your configuration and reenter the boundaryscan chain information. Boundaryscan chain validated unsuccessfully. ERROR:JTag : The boundaryscan chain has not been declared correctly. Verify the syntax and correctness of the device BSDL files, correct the files, reset the cable and retry this mand. ”这么多出错消息 , 什么原因 , 怎么办。 ) 答: Usually it is the result of a broken JTAG chain or noisy chain. Most monly, the cable is not connected properly, a trace is not correct on the board, other devices in the chain are causing a problem, or a noisy parallel port exists. Try using a different PC. You can also add a 4. 7K pullup on the PROG pin of the FPGA and see if it helps. (通常 , 这是由于中断的 JTAG链或噪声链 . 最常见的原因是 , 连线不正确 , 板子上的迹线不正确 , 链路中的其它器件导致问题 , 或者存在噪声并口 . 试一下使用不同的 PC. 也可以在 FPGA的 PROG引脚上增加一个4. 7K 的上拉电阻 , 看看是否有帮助 . ) 33. 在 VHDL 中 , 定义为 SIGNAL 的量起到什么作用。 什么时候需要定义这个量。 下面的程序 ARCHITECTURE EXER2_ARCH OF EXERCISE2 IS SIGNAL TEM: STD_LOGIC。 BEGIN TEM=PIN50 AND PIN51。 PIN8 =TEM。 END EXER2_ARCH。 和如下的程序有何区别。 ARCHITECTURE EXER2_ARCH OF EXERCISE2 IS BEGIN PIN8=PIN50 AND PIN51。 END EXER2_ARCH。 答: If PIN8 is declared in your port list, the 2 examples are identical. From a hardware design39。 s perspective, you can think of a vhdl signal as an electrical signal. So basically you can declare every object as signal. From a simulation39。 s perspective, there is a fundamental difference between signal and variable in vhdl. A variable is nothing more than an object that holds a value. A variable assignment occurs instantly in a vhdl simulation. Also, a variable can only exist within a process, so it cannot transfer values across processes. A signal, on the other hand, has a history of values. Whenever a signal。pld设计问答(编辑修改稿)
相关推荐
应国际化经营的需要,宏 基采取了 “速食店模式 ”的价值链组合 在传统的产销模式下,宏基生产整机系统并船运到海外经销点,这种模式有以下缺陷 (l)在台湾装好电脑并船运到美国,一般需 4周,再加上台湾、美国两地的库存期,宏基 的产品从买进零组件到出货给下游经销商,要花上三个月,积压的资金利息不算,微处理机、硬盘等跌价风险难以估计; (2)PC已逐渐成为一种日用品,不再主要通过电脑专卖店 销售
”在项目管理中就是进行项目的风险分析。 软件工程 软件项目管理 项目成功的 12 个关键原则 项目管理学科发展的特点和趋势 软件项目风险管理 项目成功九要素 工程项目风险管理 发表时间 : 2020226 作者 :EPC 风险管理是人们对潜在的 意外损失进行辩识、评估、预防和控制的过程。 建筑工程由于其规模大、周期长、生产的单件性和复杂性等特点,在实施过程中存在着施工不确定的因素
到库房时被库房门口的读写器 读取 并将该标签信息 发送到库房管理系统 ,记录货品接收 的详细信息。 在仓库里,货品根据其种类,如款式或品牌,被放在货柜上。 货架贴有 条形码 ,以便识别。 在日常,员工将手持 RFID 机 来读取货物标签和货架条形码,6 将货 品与所存放的货架联系起来, 手持机 内嵌有条形码扫描仪 ,其中 货柜采用条形码而不是 RFID 标签,是为了避免同时获得几个货柜的 ID
、转嫁,往往集中在生产部爆发。 现在将生产部的问题当作起点,顺向或逆向跟踪,每次都将问题彻底解决(而不是象现在仅局限于本部门),并形成相关制度。 如果现存问题得不到解决,“ JIT”无从下手。 2.供应商管理、库存管理和零库存计划。 以物料部为推进中心。 (第二阶段) 如果说内部管理水平的高低是“ JIT”实施的基础,那么对库存的管理则是“ JIT”成败的关键:成品、半成品库存,原材料库存。
区主要竞争对手 天威 天威在北京有五个专卖店: 1,硅谷专卖店,硅谷电脑城一层 D01 柜台; 2,鼎好专卖店,鼎好大厦三层 3178 柜台; 3,海龙专卖店 ,海龙大厦四层 416 室 4,百脑汇专卖店,百脑汇三层 3003; 5,科贸电脑城专卖店,科贸电脑城二层 2B44 号; 产品定位:国内第一兼容品牌 零售价格: 90120 元 /套 渠道形式:分公司 +连锁专卖店 +行业用户 优势
文档总体结构: IT总体现状描述 IT与业务调研与评估 基础架构 调研与评估 应用架构 调研与评估 IT组织与架构 调研与评估 业务与 IT管理 调研与评估 差距分析 2. IT 总体现状描述 . 信息总体架构现状 3. IT 与业务关系调研 与评估 4. 基础架构调研与评估 . IT 总体现状描述 . 数据中心 . 数据中心现状 . 评估分析结果 . SWOT 分析