readme

来自「利用FPGA实现浮点运算的verilog代码 希望能够给需要做这方面研究的同仁」· 代码 · 共 62 行

TXT
62
字号
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 + =
减小字号Ctrl + -
显示快捷键?