源码地带 > 电路图 > 电子资料下载 > 其他 >UART程序 > 查看压缩包源码

UART程序

源代码在线查看: generator.v

软件大小: 4 K
上传用户: szdoudou
关键词: UART 程序
下载地址: 免注册下载 普通下载 VIP

相关代码

				module generator(clk,rst,ce,bd_out,indicator);				    input clk,rst,ce;				    output bd_out,indicator;				    reg indicator;				    reg[15:0] count;				    				    assign bd_out=(count				    				    always @(posedge clk or negedge rst)				    if(!rst)				      begin				          count				          indicator				      end				      else if(ce)				      begin				           if(count=='d52)				           begin				               count				               indicator				           end				           else				           begin				               count				               indicator				           end				       end				       else				         begin				             count				             indicator				         end				         				 endmodule							

相关资源