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

📄 readme

📁 利用FPGA实现浮点运算的verilog代码 希望能够给需要做这方面研究的同仁有所帮助
💻
字号:
FPU Notes---------1)  The FPU will never generate a SNAN output1a) The SNAN output is asserted when one of the operands    was a signaling NAN (output will be a quiet NAN).1b) The QNAN output is asserted whenever the OUTPUT of    the FPU is NAN (always a quiet NAN).FPU===The FPU consists of the following files:		verilog/fpu.v		verilog/pre_norm.v		verilog/primitives.v		verilog/post_norm.v		verilog/except.v",		verilog/pre_norm_fmul.v(fpu.v is the top level)The testbench is in: test_bench/test_top.vTo simulate the FPU using the included test benchuse a comand like:verilog		test_bench/test_top.v	\		verilog/fpu.v		\		verilog/pre_norm.v	\		verilog/primitives.v	\		verilog/post_norm.v	\		verilog/except.v	\		verilog/pre_norm_fmul.vFCMP====The FP compare consists of	fcmp/verilog/fcmp.vThe testbench for FP compare is in: fcmp/test_bench/test_top.vTo simulate the FP compare using the included test benchuse a comand like:verilog		fcmp/test_bench/test_top.v	\		fcmp/verilog/fcmp.vMISC====Do not change the directory structure, the testbenchdepends on it !Please also read the README file in the test_vectorsdirectory.

⌨️ 快捷键说明

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