HierarchyFilesModulesSignalsTasksFunctionsHelp
// route_mebt.v
// Board-specific routing to pins for MEBT system
// $Id$
// Larry Doolittle, LBNL

// llc-suite Copyright (c) 2004, The Regents of the University of
// California, through Lawrence Berkeley National Laboratory (subject
// to receipt of any required approvals from the U.S. Dept. of Energy).
// All rights reserved.

// Your use of this software is pursuant to a "BSD-style" open
// source license agreement, the text of which is in license.txt
// (md5sum a1e0e81c78f6eba050b0e96996f49fd5) that should accompany
// this file.  If the license agreement is not there, or if you
// have questions about the license, please contact Berkeley Lab's
// Technology Transfer Department at TTD@lbl.gov referring to
// "llc-suite (LBNL Ref CR-1988)"

// XXX totally unchecked

`timescale 1ns / 1ns

[Up: llrf_mebt route_mebt]
module route_mebtIndex(
	input  CLK,                 // pin 1
	output clk40,               // interconnect
	input  DAOV,                // pin a
	input  DBOV,                // pin b
	input  DCOV,                // pin c
	input  DDOV,                // pin d
	output daov_,               // interconnect
	output dbov_,               // interconnect
	output dcov_,               // interconnect
	output ddov_,               // interconnect
	output [1:0] lrc_slot,      // interconnect
	output il_stat_,            // interconnect
	input  power_down,          // interconnect
	output P_DOWN,              // pin f
	input  RF_ON,               // pin w
	output rf_on_,              // interconnect
	output LED1,                // pin x
	input  rf_kill_,            // interconnect
	output RF_KILL,             // pin y
	output SLEEP                // pin z

);

BUFG u1(clk40, CLK);

assign daov_ = DAOV;
assign dbov_ = DBOV;
assign dcov_ = DCOV;
assign ddov_ = DDOV;

assign lrc_slot = 2'b00;
assign il_stat_ = 1;
assign P_DOWN   = power_down;
assign LED1     = 1;
assign RF_KILL  = rf_kill_;
assign SLEEP    = 0;

assign rf_on_ = RF_ON;

endmodule

HierarchyFilesModulesSignalsTasksFunctionsHelp

This page: Maintained by: ldoolitt@recycle.lbl.gov
Created:Wed May 19 11:23:02 2004
From: ../source/route_mebt.v

Verilog converted to html by v2html 7.30 (written by Costas Calamvokis).Help