[Architecture] Rework the i/o cell Verilog HDL
This commit is contained in:
parent
eb5fd1f44e
commit
e0f9547f5b
|
@ -0,0 +1,20 @@
|
|||
//-----------------------------------------------------
|
||||
// Design Name : General Purpose I/Os
|
||||
// File Name : gpio.v
|
||||
// Coder : Xifan TANG
|
||||
//-----------------------------------------------------
|
||||
|
||||
//-----------------------------------------------------
|
||||
// Function : A minimum general purpose I/O
|
||||
//-----------------------------------------------------
|
||||
module GPIO (
|
||||
input A, // Data output
|
||||
output Y, // Data input
|
||||
inout PAD, // bi-directional pad
|
||||
input DIR // direction control
|
||||
);
|
||||
//----- when direction enabled, the signal is propagated from PAD to data input
|
||||
assign Y = DIR ? PAD : 1'bz;
|
||||
//----- when direction is disabled, the signal is propagated from data out to pad
|
||||
assign PAD = DIR ? 1'bz : A;
|
||||
endmodule
|
Loading…
Reference in New Issue