Skip to content
Snippets Groups Projects
Commit 108772f7 authored by dwf1m12's avatar dwf1m12
Browse files

fpga_imp directory target board example scripts ready for experimental use

parent e35827b2
Branches
Tags FPGA-dev-v2.3
No related merge requests found
// from GLIB_PADLIB.v
//-----------------------------------------------------------------------------
// soclabs generic IO pad model
// A joint work commissioned on behalf of SoC Labs, under Arm Academic Access license.
//
// Contributors
//
// David Flynn (d.w.flynn@soton.ac.uk)
//
// Copyright 2022, SoC Labs (www.soclabs.org)
//-----------------------------------------------------------------------------
module PAD_VDDIO (
// Inouts
PAD
);
inout PAD;
IOBUF #(
.IOSTANDARD ("LVCMOS33"),
.DRIVE(8)
) IOBUF3V3 (
.O( ),
.IO(PAD),
.I(1'b1),
.T(1'b1)
);
endmodule // PAD_VDDIO
// from GLIB_PADLIB.v
//-----------------------------------------------------------------------------
// soclabs generic IO pad model
// A joint work commissioned on behalf of SoC Labs, under Arm Academic Access license.
//
// Contributors
//
// David Flynn (d.w.flynn@soton.ac.uk)
//
// Copyright 2022, SoC Labs (www.soclabs.org)
//-----------------------------------------------------------------------------
module PAD_VDDSOC (
// Inouts
PAD
);
inout PAD;
IOBUF #(
.IOSTANDARD ("LVCMOS33"),
.DRIVE(8)
) IOBUF3V3 (
.O( ),
.IO(PAD),
.I(1'b1),
.T(1'b1)
);
endmodule // PAD_VDDSOC
// from GLIB_PADLIB.v
//-----------------------------------------------------------------------------
// soclabs generic IO pad model
// A joint work commissioned on behalf of SoC Labs, under Arm Academic Access license.
//
// Contributors
//
// David Flynn (d.w.flynn@soton.ac.uk)
//
// Copyright 2022, SoC Labs (www.soclabs.org)
//-----------------------------------------------------------------------------
module PAD_VSS (
// Inouts
PAD
);
inout PAD;
IOBUF #(
.IOSTANDARD ("LVCMOS33"),
.DRIVE(8)
) IOBUF3V3 (
.O( ),
.IO(PAD),
.I(1'b1),
.T(1'b1)
);
endmodule // PAD_VSS
// from GLIB_PADLIB.v
//-----------------------------------------------------------------------------
// soclabs generic IO pad model
// A joint work commissioned on behalf of SoC Labs, under Arm Academic Access license.
//
// Contributors
//
// David Flynn (d.w.flynn@soton.ac.uk)
//
// Copyright 2022, SoC Labs (www.soclabs.org)
//-----------------------------------------------------------------------------
module PAD_VSSIO (
// Inouts
PAD
);
inout PAD;
IOBUF #(
.IOSTANDARD ("LVCMOS33"),
.DRIVE(8)
) IOBUF3V3 (
.O( ),
.IO(PAD),
.I(1'b1),
.T(1'b1)
);
endmodule // PAD_VSSIO
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment