//----------------------------------------------------------------------------- // Title : アドレスデコーダ // Project : 例題 //----------------------------------------------------------------------------- // File : decoder.v // Author : hoge@foo // Created : 03.12.2005 // Last modified : 03.12.2005 //----------------------------------------------------------------------------- // Description : // //----------------------------------------------------------------------------- // Copyright (c) 2005 by Ryusai This model is the confidential and // proprietary property of Ryusai and the possession or use of this // file requires a written license from Ryusai. //----------------------------------------------------------------------------- // Modification history : // 03.12.2005 : created //----------------------------------------------------------------------------- module decoder (/*AUTOARG*/ // Outputs cen, // Inputs PAddress ); input [15:0] PAddress; output cen; assign cen = PAddress[15]; endmodule // decoder