Advertisement
teka997

seq_23611.v

Jan 1st, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module seq_23611(output out, input seq, input clk, input clear);
  2.   dff dff4(w7,w31,clk,clear);
  3.   dff dff3(w5,w24,clk,clear);
  4.   dff dff2(w3,w17,clk,clear);
  5.   dff dff1(w1,w13,clk,clear);
  6.  
  7.   not(w2,W1);
  8.   not(w4,w3);
  9.   not(w6,w5);
  10.   not(w8,W7);
  11.   not(w9,seq);
  12.  
  13.   or(w13,w10,w11,w12,w35);
  14.   or(w17,w14,w15,w16,w36);
  15.   or(w24,w18,w19,w20,w21,w22,w32,w33,w34);
  16.   or(w31,w25,w26,w27,w28,w29,w30);
  17.  
  18.   and(w10,w1,w6,w7,w9);
  19.   and(w11,w1,w4,w8,w9);
  20.   and(w12,w3,w5,w7,seq);
  21.   and(w35,w1,w5,w7,seq);
  22.   and(w14,w3,w6,w7,w9);
  23.   and(w15,w2,w3,w8,w9);
  24.   and(w16,w2,w4,w5,w7,w9);
  25.   and(w36,w1,w5,w7,seq);
  26.   and(w18,w2,w3,w8,seq);
  27.   and(w19,w3,w5,w8);
  28.   and(w20,w3,w6,w7);
  29.   and(w32,w1,w5,w8);
  30.   and(w33,w1,w6,w7);
  31.   and(w34,w1,w4,w8,seq);
  32.   and(w21,w6,w7,seq);
  33.   and(w22,w5,w8,seq);
  34.   and(w25,w3,w5,w9);
  35.   and(w26,w1,w4,w6,w8);
  36.   and(w27,w1,w5,w9);
  37.   and(w28,w2,w4,w5,w8);
  38.   and(w29,w8,w9);
  39.   and(w30,w2,w4,w6,w9);
  40.   and(out,w1,w3);
  41.  
  42. endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement