//-------------------------------------------------------------------------------------------------- // // Title : KeyPad_Decode // Design : WI03 // Author : cse // Company : uw // //------------------------------------------------------------------------------------------------- // // File : KeyPad_Decode.v // Generated : Tue Feb 17 18:34:57 2004 // From : interface description file // By : Itf2Vhdl ver. 1.20 // //------------------------------------------------------------------------------------------------- // // Description : // //------------------------------------------------------------------------------------------------- `timescale 1ps / 1ps //{{ Section below this comment is automatically maintained // and may be overwritten //{module {KeyPad_Decode}} module KeyPad_Decode ( CLK, TXDFinish ,ASCII ,keyPad ,received, reset); input TXDFinish ; wire TXDFinish ; input [7:0] keyPad ; wire [7:0] keyPad ; input CLK; wire CLK; input reset; wire reset; output received ; reg received ; output [7:0] ASCII ; reg [7:0] ASCII ; always@(posedge CLK) begin ; end endmodule