Sep 30, 2008

IPcore Release Package

IPcore Release Package Should include:
  1. Synthesizable Verilog RTL
  2. Bit-accurate C model
  3. Verilog testbench
  4. Detailed product documentation
  5. Design specifications
  6. Integration guidelines
  7. Complete verification suite
  8. VHS tape with example noisy signals
  9. Extensive tests including corner-case scenarios
  10. Golden test result vectors
  11. FPGA test board (with testbench and supporting files)
  12. Support and training
  13. to be added...

Labels:

Sep 29, 2008

清除所有.svn目录

一、在linux下

删除这些目录是很简单的,命令如下
find . -type d -name ".svn"|xargs rm -rf

或者

find . -type d -iname ".svn" -exec rm -rf {} \;  

全部搞定。

二、在windows下

1、在项目平级的目录,执行dos命令: 
xcopy project_dir project_dir_1 /s /i

2、或者在项目根目录执行以下dos命令 
for /r . %%a in (.) do @if exist "%%a\.svn" rd /s /q "%%a\.svn"

3、直接用windows的搜索功能,打开搜索隐藏文件的选项,然后搜索.svn,再一起删除即可

Labels:

Sep 27, 2008

Power Savings Techniques

From snug San Jose -- Power Analysis Methodology
From Spreadsheet to Sign-off  by George Cuan, Cisco Systems, Inc.

Labels: