mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-08-28 16:53:45 +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.
88 lines
2.4 KiB
Verilog
88 lines
2.4 KiB
Verilog
/*
|
|
* Copyright (c) 2000 Guy Hutchison ([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
|
|
*/
|
|
|
|
module pullupdown;
|
|
|
|
// declare several bussed wires
|
|
wire pull_up_1, pull_down_1;
|
|
wire [7:0] pull_up_8, pull_down_8;
|
|
reg error;
|
|
|
|
// assign pullups to each wire
|
|
pullup (pull_up_1);
|
|
pulldown (pull_down_1);
|
|
pullup u8 [7:0] (pull_up_8);
|
|
pulldown d8 [7:0] (pull_down_8);
|
|
|
|
// create tristate drivers for each wire
|
|
reg driver_1;
|
|
reg [7:0] driver_8;
|
|
reg driver_1_en, driver_8_en;
|
|
|
|
assign pull_up_1 = (driver_1_en) ? driver_1 : 1'bz;
|
|
assign pull_down_1 = (driver_1_en) ? driver_1 : 1'bz;
|
|
|
|
assign pull_up_8 = (driver_8_en) ? driver_8 : 8'bz;
|
|
assign pull_down_8 = (driver_8_en) ? driver_8 : 8'bz;
|
|
|
|
initial
|
|
begin : test_block
|
|
integer i;
|
|
|
|
// turn off all drivers
|
|
driver_1_en = 0;
|
|
driver_8_en = 0;
|
|
error = 0;
|
|
#1;
|
|
|
|
// check default values
|
|
if ((pull_up_1 !== 1'b1) || (pull_down_1 !== 1'b0) ||
|
|
(pull_up_8 !== 8'hFF) || (pull_down_8 !== 8'h00))
|
|
error = 1;
|
|
|
|
// turn on drivers
|
|
driver_1_en = 1;
|
|
driver_8_en = 1;
|
|
|
|
for (i=0; i<256; i=i+1)
|
|
begin
|
|
driver_1 = ~driver_1;
|
|
driver_8 = i;
|
|
$display ("Testing drivers with value %h", driver_8);
|
|
#1;
|
|
|
|
check_drivers;
|
|
#10;
|
|
end
|
|
|
|
if (error)
|
|
$display ("FAILED - pullupdown ");
|
|
else $display ("PASSED");
|
|
end // block: test_block
|
|
|
|
task check_drivers;
|
|
begin
|
|
if ((pull_up_1 !== driver_1) || (pull_down_1 !== driver_1) ||
|
|
(pull_up_8 !== driver_8) || (pull_down_8 !== driver_8))
|
|
error = 1;
|
|
end
|
|
endtask // check_drivers
|
|
|
|
endmodule // pullupdown
|