mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-09-07 19:56:53 +02:00
By adding ivtest to the iverilog source tree, it is easier to keep the regression test synchronized with the source that is being tested. This should be especially helpful for PRs that add a new feature, and have a matching ivtest PR with the regression test for that feature.
82 lines
2.4 KiB
Verilog
82 lines
2.4 KiB
Verilog
/*
|
|
* Copyright (c) 2001 Stephen Williams ([email protected])
|
|
*
|
|
* This source code is free software; you can redistribute it
|
|
* and/or modify it in source code form under the terms of the GNU
|
|
* General Public License as published by the Free Software
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
*/
|
|
|
|
/*
|
|
* This test was inspired by PR#539. We check that the calculated bit
|
|
* select of a net in a continuous assignment gets bits in the right
|
|
* order and position. The trick here is that the bits are numbered
|
|
* from MSB to LSB.
|
|
*/
|
|
|
|
module main;
|
|
|
|
reg [63:0] target0 = 64'h0040_2000_0000_0000;
|
|
reg [64:1] target1 = 64'h0040_2000_0000_0000;
|
|
reg [6:0] idx;
|
|
|
|
wire mux0 = target0[idx];
|
|
wire mux1 = target1[idx+1];
|
|
|
|
initial begin
|
|
$display( "Using constant indices:" );
|
|
$display( " %b=v[45]", target0[45] );
|
|
if (target0[45] !== 1'b1) begin
|
|
$display("FAILED -- target0[45] != 1");
|
|
$finish;
|
|
end
|
|
|
|
$display( " %b=v[54]", target0[54] );
|
|
if (target0[54] !== 1'b1) begin
|
|
$display("FAILED -- target0[54] != 1");
|
|
$finish;
|
|
end
|
|
|
|
$display( " %b=v[18]", target0[18] );
|
|
if (target0[18] !== 1'b0) begin
|
|
$display("FAILED -- target0[18] != 0");
|
|
$finish;
|
|
end
|
|
|
|
$display( " %b=v[ 9]", target0[9] );
|
|
if (target0[9] !== 1'b0) begin
|
|
$display("FAILED -- target0[ 9] != 0");
|
|
$finish;
|
|
end
|
|
|
|
$display( "Using calcuated indices:" );
|
|
for (idx = 0 ; idx < 64 ; idx = idx + 1) begin
|
|
#1 $display("target0[%2d]=%b, mux0=%b", idx, target0[idx], mux0);
|
|
$display("target1[%2d]=%b, mux1=%b", idx+1, target1[idx+1], mux1);
|
|
|
|
if (target0[idx] !== mux0) begin
|
|
$display("FAILED -- target0[idx] != mux0");
|
|
$finish;
|
|
end
|
|
|
|
if (target1[idx+1] !== mux1) begin
|
|
$display("FAILED -- target1[idx+1] != mux1");
|
|
$finish;
|
|
end
|
|
end
|
|
|
|
$display("PASSED");
|
|
end
|
|
|
|
endmodule // main
|