📄 dctctl.v
字号:
`timescale 1ns/10ps
`define bw 12
module dctctl(//input
nrst,clk,
dcten,idcten,
//output
transin, //transpose input rather than source input
octcntr,cntr,
wen,addr );
input nrst,clk;
input dcten,idcten;
output transin;
output [3:0] octcntr;
output [3:0] cntr;
output wen;
output [5:0] addr;
//==========================================================
// signal declaration
//
reg [2:0] subcntr;
reg trans_tmp;
reg [3:0] cntr;
//==========================================================
//
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -