⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 checksum_test.h

📁 checksum fpga verilog
💻 H
字号:
#ifndef __CHECKSUM_TEST_H__
#define __CHECKSUM_TEST_H__
/*
 * Module:  Checksum_Test.h
 * Date:    August 10, 2005
 *
 * This test simply calculates a checksum and returns the result.  It is used 
 * by both the profiler_project and high_res_timer_performance_project 
 * applications.  
 */
 
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */

/*
 * Altera types with bit width names
 */
#include "alt_types.h"
 
/* Define the size of the memory block which will be used for
 * measuring the performance of off-chip memory SDRAM. 
 */
#define CHECKSUM_MEMORY_BLOCK_SIZE 32000

/* The checksum_test function demonstrates the functionality of the
 * profiler by providing something to measure.  The test simply does a 
 * checksum calculation and prints the results.  
 */
 
alt_u32 checksum_test (void);

#ifdef __cplusplus
}
#endif

#endif /* __CHECKSUM_TEST_H__ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -