PIXNET Logo登入

My Humble House

跳到主文

我的狗窩

部落格全站分類:生活綜合

  • 相簿
  • 部落格
  • 留言
  • 名片
  • 3月 10 週一 201415:25
  • [Debussy] Show signal values in nTrace (在 nTrace 視窗顯示 signal value)

在 nTrace 視窗直接按 x 鍵可以把目前 nWave 游標所在時間的所有 signal 的 value 顯示在 signal 下方.
 
Active Annotation in Source Window

Use Source ->Active Annotation (or press x key in nTrace window) to annotate simulation result to source window.
It will annotate the signal values at the cursor time and display the values under each signal.
It will also display signal transition.
Any signals can be annotated if they are dumped, no matter whether their waveform are displayed
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(191)

  • 個人分類:EDA
▲top
  • 3月 03 週一 201411:02
  • tar gzip 壓縮/解壓縮指令

壓縮:
tar -cvzf F1.tar.gz F2.txt F3.txt
( 將 F2.txt 與 F3.txt 打包壓縮在 F1.tar.gz )
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(11,998)

  • 個人分類:Linux/Unix
▲top
  • 2月 13 週四 201415:13
  • [Verilog] Multicycle path setting in Design Compiler

Ex 1. The path from FF1 to FF2 is designed to take 2 clock cycles rather than 1.
set_multicycle_path -setup 2 \
-from [get_cells FF1] -to [get_cells FF2]
set_multicycle_path -hold 1 \
-from [get_cells FF1] -to [get_cells FF2]
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(857)

  • 個人分類:Verilog
▲top
  • 2月 07 週五 201415:23
  • [Matlab] Comment multiple lines

%{
... Stuff you wnat to comment out ....

%}
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(2) 人氣(24)

  • 個人分類:Matlab
▲top
  • 1月 22 週三 201411:50
  • [Linux] mksh: Fatal error: Cannot load command `./abc': Bad file number

Error:
mksh: Fatal error: Cannot load command `./abc': Bad file number
Solution:
chmod u+x abc
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(84)

  • 個人分類:Linux/Unix
▲top
  • 11月 26 週二 201318:00
  • Auto list possible selections in Linux

in .cshrc
 
set filec
set autolist
or
ctrl-D
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(11)

  • 個人分類:Linux/Unix
▲top
  • 11月 14 週四 201316:01
  • CVS Commands

cvs status
列出所有檔案目前版本的status, status的種類可見:
http://www.network-theory.co.uk/docs/cvsmanual/Filestatus.html
 
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(60)

  • 個人分類:Linux/Unix
▲top
  • 10月 18 週五 201311:38
  • vi 常用指令

/KEYWORD : search forward to find KEYWORD
n : find next
?KEYWORD : search backward to find KEYWORD
N : find previous
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(53)

  • 個人分類:vi
▲top
  • 8月 13 週二 201319:56
  • How to execute multiple commands in one line on command line mode

Use &
 
ex.
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(63)

  • 個人分類:Windows / MS-DOS
▲top
  • 7月 31 週三 201311:42
  • [Windows / MS-DOS] How to use .bat to call another bat?

When write an .bat as follows:
 
a.bat
b.bat
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(34)

  • 個人分類:Windows / MS-DOS
▲top
«1234...7»

個人資訊

bamil
暱稱:
bamil
分類:
生活綜合
好友:
累積中
地區:

熱門文章

  • (66,581)Excel 2007 如何畫出有兩個y軸的圖 (兩個y座標軸)
  • (17,954)vi 的顯示行數與隱藏行數
  • (4,691)NCVerilog 錯誤訊息 Illegal operand for constant expression [4(IEEE)] 的解法
  • (3,993)[NC-Verilog] ncelab: *F,CUMSTS: Timescale directive missing on one or more modules. 錯誤訊息的原因
  • (2,611)vi 如何全部取代 (search and replace all)
  • (1,484)Syntax error: Bad fd number 的解決方法
  • (715)Xterm 的 copy / paste
  • (426)Windows 和 Exceed (X window) 之間的 copy / paste
  • (244)ncvlog: *E,UNBERR: (1) unbound instance(s). 的解決方法
  • (62)漢語拼音

文章分類

  • EDA (5)
  • Verilog (1)
  • Matlab (3)
  • Linux/Unix (12)
  • Windows / MS-DOS (3)
  • vi (9)
  • 未分類文章 (1)

最新文章

  • [Design Compiler] "hdl-193" warning: cannot find the design 'XXX' in the library 'work'. (lbr-1)
  • [Vi] 游標跳至列首 (move cursor to beginning of the line)
  • [Vivado] How to change firmware ROM by modifying bitstream (updateMem)
  • [linux] connect to another server with local display (連到另一台主機, 同時把Display參數帶過去)
  • [MATLAB] Pass float/char type data to a C MEX function
  • [MATLAB] MTIMES is not fully supported for integer classes
  • [Linux] How to copy several specific files to one directory (複製多個特定檔案到別的資料夾)
  • [linux] search keyword in files
  • [vi] 統計string出現次數 (count string in vi)
  • [EDA] ERROR:Portability:3 - This Xilinx application has run out of memory

最新留言

  • [22/05/06] 訪客 於文章「Excel 2007 如何畫出有兩個y軸...」留言:
    回饋您這方面資訊,我是從 PTT搜尋引擎的排名,看...
  • [20/11/23] 訪客 於文章「Linux 如何比較兩個資料夾內的所有檔...」留言:
    您好,想請問如果我兩個不同資料夾內的檔案名稱不同,但其餘皆相...
  • [18/07/28] 訪客 於文章「Linux 如何比較兩個資料夾內的所有檔...」留言:
    this post is very use ful h...
  • [16/05/11] bamil 於文章「[EDA] ERROR:Portabil...」留言:
    To restore the setting: bcd...
  • [15/03/05] 有同樣的問題 於文章「[Windows] Chrome 瀏覽器...」留言:
    應該不是這個問題= =...
  • [14/02/07] seetha sweety 於文章「[Matlab] Comment mul...」留言:
    Here's some great news for tho...
  • [14/02/07] KS. KAVITHA 於文章「[Matlab] Comment mul...」留言:
    Some people are naturally bett...
  • [09/05/02] 咖啡達人 於文章「來自香港的 Thomas Wong "教...」留言:
    歡迎來我的部落格坐坐喔 這裡有好康的事情要告訴大家喔 ...
  • [09/01/12] bb 於文章「漢語拼音...」留言:
    恭喜狗窝开张!...

文章精選

文章搜尋

誰來我家

參觀人氣

  • 本日人氣:
  • 累積人氣: