1
0
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:
aolofsson 2022-06-28 23:23:01 -04:00
commit 40756aa177
2 changed files with 7 additions and 10 deletions

View File

@ -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

View File

@ -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