URL
https://opencores.org/ocsvn/ft816float/ft816float/trunk
Subversion Repositories ft816float
[/] [ft816float/] [trunk/] [test_bench/] [mult128x128_tb.sv] - Rev 75
Go to most recent revision | Compare with Previous | Blame | View Log
// ============================================================================
// __
// \\__/ o\ (C) 2020 Robert Finch, Waterloo
// \ __ / All rights reserved.
// \/_// robfinch<remove>@finitron.ca
// ||
//
// mult128x128_tb.sv
//
// BSD 3-Clause License
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// ============================================================================
module mult128x128_tb();
reg clk;
reg [23:0] cnt;
reg [127:0] a, b;
wire [255:0] o;
wire [255:0] p = a * b;
integer outfile;
initial begin
a = $urandom(1);
b = $urandom(1);
// Initialize Inputs
clk = 1;
cnt = 0;
// Wait 100 ns for global reset to finish
#100000000 $fclose(outfile);
#100 $finish;
end
always #5 clk = ~clk;
//mult128x128 u1 (clk, 1'b1, a, b, o);
mult128x128seq u2 (clk, cnt[8:0]==9'd2, a, b, o);
always @(posedge clk)
begin
cnt <= cnt + 1;
case(cnt[23:9])
0:
begin
a <= 128'h00a;
b <= 128'h00a;
end
1:
begin
a <= 128'h00a786bb752275222b913c4e93db9923;
b <= 128'h44f3a2773f6cd5714108b38cbf9ed32f;
end
2:
begin
a <= 128'd21;
b <= 128'd1700000;
end
3:
begin
a <= 128'd215000;
b <= 128'd11;
end
default:
if (cnt[8:0]==5'd0) begin
a[31:0] <= $urandom();
b[31:0] <= $urandom();
if (cnt[23:5] > 19'h200) begin
a[63:32] <= $urandom();
b[63:32] <= $urandom();
end
if (cnt[23:5] > 19'h400) begin
a[63:32] <= $urandom();
b[63:32] <= $urandom();
a[95:64] <= $urandom();
b[95:64] <= $urandom();
a[127:96] <= $urandom();
b[127:96] <= $urandom();
end
end
endcase
end
initial outfile = $fopen("d:/cores2022/rf6809/rtl/fpu/test_bench/mult128x128_tvo.txt", "wb");
always @(posedge clk) begin
if (cnt[8:0]==9'h140)
$fwrite(outfile, "%c%h\t%h\t%h\t%h\n",o!=p ? "*" : " ",a,b,o, p);
end
endmodule
Go to most recent revision | Compare with Previous | Blame | View Log