mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-17 20:02:53 +08:00
Merge branch 'master' of github.com:aolofsson/oh
This commit is contained in:
commit
40756aa177
@ -83,7 +83,7 @@ module oh_stimulus
|
||||
.mask ({(PW){1'b1}}),
|
||||
.taps ({(PW){1'b1}}),
|
||||
.entaps (1'b0),
|
||||
.en (go),
|
||||
.en (stim_valid),
|
||||
.seed (seed),
|
||||
/*AUTOINST*/
|
||||
// Inputs
|
||||
|
@ -11,28 +11,25 @@ module oh_verify
|
||||
(
|
||||
input clk,
|
||||
input nreset, //async reset
|
||||
input en, // enable counter
|
||||
input entaps, // enable taps input
|
||||
input [N-1:0] taps, // user driven taps
|
||||
input en, // enable random counter
|
||||
input [N-1:0] seed, // seed
|
||||
input [N-1:0] mask, // mask output (1 = active)
|
||||
input [N-1:0] in, // input data
|
||||
output [N-1:0] out, // generated random number
|
||||
output error // difference found
|
||||
);
|
||||
|
||||
// Recreate random number
|
||||
oh_random oh_random(/*AUTOINST*/
|
||||
oh_random oh_random(.mask ({(PW){1'b1}}),
|
||||
.taps ({(PW){1'b1}}),
|
||||
.entaps (1'b0),
|
||||
/*AUTOINST*/
|
||||
// Outputs
|
||||
.out (out[N-1:0]),
|
||||
// Inputs
|
||||
.clk (clk),
|
||||
.nreset (nreset),
|
||||
.en (en),
|
||||
.entaps (entaps),
|
||||
.taps (taps[N-1:0]),
|
||||
.seed (seed[N-1:0]),
|
||||
.mask (mask[N-1:0]));
|
||||
.seed (seed[N-1:0]));
|
||||
|
||||
|
||||
// Compare random number to data
|
||||
|
Loading…
x
Reference in New Issue
Block a user