W
wwwrabbit
Guest
U @ ltera MaxPlus sam dizajniran sljedećih modula.val u editor, I use "Enter čvorovi iz SNF".Kako mogu početnog "initCnt" kao b0101, u korist početnoga "initCnt0, initCnt1, initCnt2, initCnt3" individualno?
još jedna pitanje: svibanj sam inicijalno initCnt unutar modula?kao što je "početnom initCnt = 4'b0101;"
hvala
odule test (clk1, clk2, clk3, initCnt, count);
ulazni clk1, clk2, clk3;
input [3:0] initCnt;
output [3:0] count;
reg [3:0] count1;
reg [3:0] count2;
reg [3:0] count3;
Uvijek @ (posedge clk1)
count1 = count1 1;
Uvijek @ (posedge clk2)
count2 = count2 1;
Uvijek @ (posedge clk3)
count3 = count3 1;
dodijeliti count1 count = count2 count3 initCnt;
endmodule
još jedna pitanje: svibanj sam inicijalno initCnt unutar modula?kao što je "početnom initCnt = 4'b0101;"
hvala
odule test (clk1, clk2, clk3, initCnt, count);
ulazni clk1, clk2, clk3;
input [3:0] initCnt;
output [3:0] count;
reg [3:0] count1;
reg [3:0] count2;
reg [3:0] count3;
Uvijek @ (posedge clk1)
count1 = count1 1;
Uvijek @ (posedge clk2)
count2 = count2 1;
Uvijek @ (posedge clk3)
count3 = count3 1;
dodijeliti count1 count = count2 count3 initCnt;
endmodule