NC-Verlog/NC-VHDL/NC-SIM 1.150

源代码在线查看: binarytogray.v

软件大小: 203 K
上传用户: wuegrcun
关键词: NC-Verlog NC-VHDL NC-SIM 1.150
下载地址: 免注册下载 普通下载 VIP

相关代码

				module binarytogray (clk, reset, binary_input, gray_output);
				input          clk, reset;
				input   [3:0]  binary_input;
				output         gray_output;
				reg     [3:0]  gray_output;
				
				always @ (posedge clk or posedge reset)
				if (reset)
				   begin
				   gray_output 				   end
				else begin
				     gray_output[3] 				     gray_output[2] 				     gray_output[1] 				     gray_output[0] 				     end
				endmodule
							

相关资源