59 lines
1.7 KiB
Coq
59 lines
1.7 KiB
Coq
|
|
/*
|
||
|
|
* Copyright (c) 2014 Stephen Williams (steve@icarus.com)
|
||
|
|
*
|
||
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
|
*/
|
||
|
|
|
||
|
|
`default_nettype none
|
||
|
|
|
||
|
|
module main;
|
||
|
|
|
||
|
|
reg [4:0] foo [0:3][0:7];
|
||
|
|
bit [3:0] idx1, idx2;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
for (idx1 = 0 ; idx1 < 4 ; idx1 = idx1+1) begin
|
||
|
|
for (idx2 = 0 ; idx2 <= 7 ; idx2 = idx2+1)
|
||
|
|
foo[idx1][idx2] = {idx1[1:0], idx2[2:0]};
|
||
|
|
end
|
||
|
|
|
||
|
|
foreach (foo[ia,ib]) begin
|
||
|
|
if (ia > 3 || ib > 7) begin
|
||
|
|
$display("FAILED -- index out of range: ia=%0d, ib=%0d", ia, ib);
|
||
|
|
$finish;
|
||
|
|
end
|
||
|
|
|
||
|
|
if (foo[ia][ib] !== {ia[1:0], ib[2:0]}) begin
|
||
|
|
$display("FAILED -- foo[%0d][%0d] == %b", ia, ib, foo[ia][ib]);
|
||
|
|
$finish;
|
||
|
|
end
|
||
|
|
|
||
|
|
foo[ia][ib] = 5'bzzzz;
|
||
|
|
end
|
||
|
|
|
||
|
|
for (idx1 = 0 ; idx1 < 4 ; idx1 = idx1+1) begin
|
||
|
|
for (idx2 = 0 ; idx2 <= 7 ; idx2 = idx2+1)
|
||
|
|
if (foo[idx1][idx2] !== 5'bzzzz) begin
|
||
|
|
$display("FAILED -- foreach failed to visit foo[%0d][%0d]", idx1,idx2);
|
||
|
|
$finish;
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
$display("PASSED");
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule // main
|