Altera_Forum
Honored Contributor
14 years agoQuestion about 2x clocking
Hi All,
I have a question about clocking. I want to achieve "result 2".(see attachment) However i am having problem getting the correct system verilog to work. I have no idea why it did not as expected. I keep on getting result 1 :( Need some advice here.Thanks. I tried the following: both does not work 1st try task stretch ( input [3:0] value_A , input [3:0] value_B ); @(posedge clkB ) begin module.data = value_A; end @(negedge clkB ) begin module.data = value_B; end endtask : stretch 2nd try task stretch ( input [3:0] value_A , input [3:0] value_B ); @(posedge clkA ) begin module.data = value_A; # 10ns; module.data = value_A; end @(posedge clkA ) begin module.data = value_B; # 10ns; module.data = value_B; end endtask : stretch