S
server
Guest
message unavailable
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I am facing the same situation when writing a FSM, and I wonder if I can seperate the posedge and nededge always.using posedge and negedge clk , in fact, is equal to always @ ( clk or
negedge reset )
ppo...@gmail.com å¨ 2005å¹´5æ27æ¥ ææäºä¸å5:20:48 [UTC+8] çä¿¡ä¸å¯«éï¼
using posedge and negedge clk , in fact, is equal to always @ ( clk or
negedge reset )
I am facing the same situation when writing a FSM, and I wonder if I can seperate the posedge and nededge always.
For example:
always@(posedge clk or posedge rst) case(current_state) case1: .... case2: ...... case3:.......
always@(nededge clk or posedge rst) case(current_state) case1: .... case3:.......