97 lines
2.7 KiB
Verilog
97 lines
2.7 KiB
Verilog
/*
|
|
* Copyright (c) 2000 Guy Hutchison (ghutchis@pacbell.net)
|
|
*
|
|
* 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
|
|
/* -----\/----- EXCLUDED -----\/-----
|
|
pullup (pull_up_1);
|
|
pulldown (pull_down_1);
|
|
-----/\----- EXCLUDED -----/\----- */
|
|
assign (pull1, pull0) pull_up_1 = 1'b1;
|
|
assign (pull1, pull0) pull_down_1 = 1'b0;
|
|
|
|
assign (pull1, pull0) pull_up_8 = 8'hff;
|
|
assign (pull1, pull0) pull_down_8 = 8'h00;
|
|
/* -----\/----- EXCLUDED -----\/-----
|
|
pullup (pull_up_8);
|
|
pulldown (pull_down_8);
|
|
-----/\----- EXCLUDED -----/\----- */
|
|
|
|
// 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
|