Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. @(tb_hready and posedge tb_hclk) ;//(1)
  2. wait(tb_hready) @(posedge tb_hclk) ;//(2)
  3. wait(tb_hready && posedge tb_hclk) ;//(3)
  4. if(tb_hready) @(posedge tb_hclk) ;//(4)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement