URL
https://opencores.org/ocsvn/ft816float/ft816float/trunk
Subversion Repositories ft816float
Compare Revisions
- This comparison shows the changes necessary to convert path
/ft816float
- from Rev 68 to Rev 69
- ↔ Reverse comparison
Rev 68 → Rev 69
/trunk/test_bench/DFPCompare128_tb.v
0,0 → 1,156
`timescale 1ns / 1ps |
// ============================================================================ |
// __ |
// \\__/ o\ (C) 2006-2022 Robert Finch, Waterloo |
// \ __ / All rights reserved. |
// \/_// robfinch<remove>@finitron.ca |
// || |
// |
// DFPcompare128_tb.v |
// - decimal floating point addsub test bench |
// |
// 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 DFPCompare128_tb(); |
reg rst; |
reg clk; |
reg [15:0] adr; |
reg [127:0] a,b; |
wire [11:0] o; |
reg [127:0] ad,bd; |
reg [127:0] od; |
reg [3:0] rm; |
reg [15:0] rel; |
|
integer n; |
reg [127:0] a1, b1; |
|
integer outfile; |
|
initial begin |
rst = 1'b0; |
clk = 1'b0; |
adr = 0; |
a = $urandom(1); |
b = 1; |
#20 rst = 1; |
#50 rst = 0; |
#10000000 $fclose(outfile); |
#10 $finish; |
end |
|
always #5 |
clk = ~clk; |
|
genvar g; |
generate begin : gRand |
for (g = 0; g < 128; g = g + 4) begin |
always @(posedge clk) begin |
a1[g+3:g] <= $urandom() % 16; |
b1[g+3:g] <= $urandom() % 16; |
end |
end |
end |
endgenerate |
|
reg [7:0] count; |
always @(posedge clk) |
if (rst) begin |
adr <= 0; |
count <= 0; |
end |
else |
begin |
if (adr==0) begin |
outfile = $fopen("d:/cores2022/rf6809/rtl/dfpu/test_bench/DFPCompare128_tvo.txt", "wb"); |
$fwrite(outfile, " rm ------- A ------ ------- B ------ ------ sum ----- -- SIM Sum --\n"); |
end |
count <= count + 1; |
if (count > 3) |
count <= 1'd1; |
if (count==2) begin |
a <= a1; |
b <= b1; |
a[127:124] <= 4'h5; |
b[127:124] <= 4'h5; |
rm <= adr[14:12]; |
//ad <= memd[adr][63: 0]; |
//bd <= memd[adr][127:64]; |
end |
if (adr==1 && count==2) begin |
a <= 128'h50000700000000000000000000000000; |
b <= 128'h50000200000000000000000000000000; |
end |
if (adr==2 && count==2) begin |
a <= 128'h50000900000000000000000000000000; |
b <= 128'h50000200000000000000000000000000; |
end |
if (adr==3 && count==2) begin |
a <= 128'h50000000000000000000000000000000; |
b <= 128'h50000000000000000000000000000000; |
end |
if (adr==4 && count==2) begin |
a <= 128'h44000000000000000000000000000000; |
b <= 128'h44000000000000000000000000000000; |
end |
if (adr==5 && count==2) begin |
a <= 128'h44004000000000000000000000000000; |
b <= 128'h44004000000000000000000000000000; |
end |
if (adr==6 && count==2) begin |
a <= 128'h44000000000000000000000000000000; |
b <= 128'h44004000000000000000000000000000; |
end |
if (adr==7 && count==2) begin |
a <= 128'h44004000000000000000000000000000; |
b <= 128'h44000000000000000000000000000000; |
end |
if (count==3) begin |
casez(o) |
12'b???????1????: rel = "un"; |
12'b???????0??01: rel = "eq"; |
12'b???????0??10: rel = "lt"; |
12'b???????0?1??: rel = "le"; |
12'b?????1?0???1: rel = "ge"; |
12'b????1??0???0: rel = "gt"; |
default: rel = "??"; |
endcase |
$fwrite(outfile, "%h\t%h\t%h %s\n", a, b, o, rel); |
adr <= adr + 1; |
end |
end |
|
//fpMulnr #(64) u1 (clk, 1'b1, a, b, o, rm);//, sign_exe, inf, overflow, underflow); |
DFPCompare128 u6 ( |
.a(a), |
.b(b), |
.o(o) |
); |
|
endmodule |