⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 topcounter.v

📁 利用LMP的20bit counter,比自带的cout进位要快的多。已经同错综合和时序仿真。
💻 V
字号:
module topcounter (
	aload,
	clock,
	data,
	sclr,
	sload,
	q);

	input	  aload;
	input	  clock;
	input	[19:0]  data;
	input	  sclr;
	output	  sload;
	output	[19:0]  q;
	
	counter mycounter(
	.aload(aload),
	.clock(clock),
	.data(data),
	.sclr(sclr),
	.sload(sload),
	.q(q));
	
	myand thisand(
	.datain(q),
	.out(sload));
	
	endmodule

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -