异步复位同步释放---关于复位的问题
摘要:
http://blog.ednchina.com/ilove314/201656/message.aspx 一个简单的异步复位的例子Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 module test 2 ( 3 input clk, 4 input rst_n, 5 input data_in, 6 output reg out 7 ); 8 always @ (posedge clk or negedge rst_n) 9 if( 阅读全文
posted @ 2010-11-25 17:07 齐威王 阅读(21436) 评论(4) 推荐(9) 编辑