?? top_level_logf.tdf
字號:
FUNCTION logf (sysclk, reset, xin[width..1])
RETURNS (logout[width..1]);
PARAMETERS
(
width = 16,
exact = 6,
base = "two", -- two, ten, e
pipeline = "yes"
);
subdesign top_level_logf
(
sysclk, reset, xin[width..1] : INPUT;
logout[width..1] : OUTPUT;
)
BEGIN
logout[] = logf (sysclk, reset, xin[])
WITH (width=width,exact=exact,base=base,pipeline=pipeline);
END;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -