OpenCores
URL https://opencores.org/ocsvn/oms8051mini/oms8051mini/trunk

Subversion Repositories oms8051mini

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 11 to Rev 12
    Reverse comparison

Rev 11 → Rev 12

/oms8051mini/trunk/help/help.awk.txt
0,0 → 1,8
 
 
1. to print only string at $5 with 'v'
awk '$5 ~/v/' AfterXtalk.rpt
 
2. To Extract $3 > 0.4 at with line 'v'
awk '$5 ~/v/' AfterXtalk.rpt | awk '$3 > 0.4'
 
/oms8051mini/trunk/help/help.ets.txt
0,0 → 1,13
1. How to get the cell name hierachy in ETS
get_cell -hier <cell_name>
2. how to get the net name hierachy in ets
get_net -hier <net_name>
3. How to detach a net in ets
detach_net <net_name> <cell pin name>
4. How to attach a net in ets
attach_net <net_name> <cell pin name>
 
 
--------- ATPG ---
 
ATPG Commands : file:///tools/et11.1/doc/dftcmdguide/chap2.html
/oms8051mini/trunk/help/help.ncxlmode.txt
0,0 → 1,4
 
1. To enable hal lint check in ncxlmode
ncxlmode -hal -f <file name>
 
/oms8051mini/trunk/help/help.unix.txt
0,0 → 1,21
 
1. To login the other machine, with display setting, use -Y along with ssh
ssh -Y blrc08
 
2. How to get the full file name in a directory
find $PWD
 
3. How to search a file name including subdirectory
find . -name <file name>
Example-1: find . -name img2_jtag_pack.vhd
Example-2: find /home/me/subdir -name "abc*"
 
4. How to exclude a file name in search
find . ! -name <file name>
Example-1: find . ! -name img2_jtag_pack.vhd
Example-2: find /home/me/subdir ! -name ".*"
 
5. To watch the regression status periodically
cho "################## Rx Chain Regression ##################" > regression_rx.rpt
xterm -e "watch -n 2 cat regression_rx.rpt" &
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.