很好的几个FPGA工程设计实例,Verilog编写

源代码在线查看: function.h

软件大小: 1119 K
上传用户: scauliaorongjun
关键词: Verilog FPGA 工程 设计实例
下载地址: 免注册下载 普通下载 VIP

相关代码

				// function.h
				//
				// This file controls which driver functions are enabled.
				
				#ifndef __function_h__
				#define __function_h__
				
				#define DRIVER_FUNCTION_CREATE
				#define DRIVER_FUNCTION_CLOSE
				#define DRIVER_FUNCTION_DEVICE_CONTROL
				#define DRIVER_FUNCTION_READ
				#define DRIVER_FUNCTION_WRITE
				
				#define DRIVER_FUNCTION_ADD_DEVICE
				#define DRIVER_FUNCTION_PNP
				#define DRIVER_FUNCTION_POWER
				#define DRIVER_FUNCTION_SYSTEM_CONTROL
				#define DRIVER_FUNCTION_UNLOAD
				
				#define DRIVER_FUNCTION_CLEANUP
				
				#endif
							

相关资源