├── .gitignore ├── README.md ├── SCR ├── dw_fadd.sh ├── dw_fdiv.sh ├── dw_fmul.sh ├── dw_fsqrt.sh ├── env.sh ├── run_all.sh ├── run_all64.sh ├── run_dw_all.sh ├── tf32_intToFloat.sh ├── tf64_add.sh ├── tf64_div.sh ├── tf64_floatToInt.sh ├── tf64_intToFloat.sh ├── tf64_mac.sh ├── tf64_mul.sh ├── tf64_roundToInt.sh ├── tf64_sqrt.sh ├── tf_add.sh ├── tf_div.sh ├── tf_floatToInt.sh ├── tf_intToFloat.sh ├── tf_mac.sh ├── tf_mul.sh ├── tf_roundToInt.sh └── tf_sqrt.sh ├── doc └── R5FP.odp ├── patching_testfloat ├── test_a_f32_z_i32_x.c ├── test_a_f32_z_i64_x.c ├── test_a_f32_z_ui32_x.c ├── test_a_f32_z_ui64_x.c ├── test_a_f64_z_i32_x.c ├── test_a_f64_z_i64_x.c ├── test_a_f64_z_ui32_x.c ├── test_a_f64_z_ui64_x.c ├── test_a_i32_z_f32.c ├── test_a_i32_z_f64.c ├── test_a_i64_z_f32.c ├── test_a_i64_z_f64.c ├── test_a_ui32_z_f32.c ├── test_a_ui32_z_f64.c ├── test_a_ui64_z_f32.c ├── test_a_ui64_z_f64.c ├── test_abcz_f32.c ├── test_abcz_f64.c ├── test_abz_f32.c ├── test_abz_f64.c ├── test_az_f32.c ├── test_az_f32_rx.c ├── test_az_f64.c └── test_az_f64_rx.c ├── rtl ├── R5FP_add_mul.v ├── R5FP_div.v ├── R5FP_inc.vh ├── R5FP_int_div_sqrt.v ├── R5FP_pipeline.v ├── R5FP_postproc.v ├── R5FP_sqrt.v └── R5FP_util.v ├── tb ├── DW_lza_function.inc ├── DW_lzd_function.inc ├── f_div.f ├── f_sqrt.f ├── f_tf64_fadd.f ├── f_tf64_fdiv.f ├── f_tf64_floatToInt.f ├── f_tf64_fmac.f ├── f_tf64_fmul.f ├── f_tf64_fsqrt.f ├── f_tf64_intToFloat.f ├── f_tf64_roundToInt.f ├── f_tf_fadd.f ├── f_tf_fdiv.f ├── f_tf_floatToInt.f ├── f_tf_fmac.f ├── f_tf_fmul.f ├── f_tf_fsqrt.f ├── f_tf_intToFloat.f ├── f_tf_roundToInt.f ├── sim_div.cpp ├── sim_fadd.cpp ├── sim_fdiv.cpp ├── sim_floatToInt.cpp ├── sim_fmac.cpp ├── sim_fmul.cpp ├── sim_fsqrt.cpp ├── sim_intToFloat.cpp ├── sim_main.hpp ├── sim_roundToInt.cpp ├── sim_sqrt.cpp ├── tb_div.v ├── tb_sqrt.v ├── tb_tf_fadd.v ├── tb_tf_fdiv.v ├── tb_tf_floatToInt.v ├── tb_tf_fmac.v ├── tb_tf_fmul.v ├── tb_tf_fsqrt.v ├── tb_tf_intToFloat.v └── tb_tf_roundToInt.v └── tb_dw ├── f_fadd.f ├── f_fdiv.f ├── f_fmul.f ├── f_fsqrt.f ├── sim_fadd.cpp ├── sim_fdiv.cpp ├── sim_fmac.cpp ├── sim_fmul.cpp ├── sim_fsqrt.cpp ├── tb_fadd.v ├── tb_fdiv.v ├── tb_fmul.v └── tb_fsqrt.v /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/README.md -------------------------------------------------------------------------------- /SCR/dw_fadd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/dw_fadd.sh -------------------------------------------------------------------------------- /SCR/dw_fdiv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/dw_fdiv.sh -------------------------------------------------------------------------------- /SCR/dw_fmul.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/dw_fmul.sh -------------------------------------------------------------------------------- /SCR/dw_fsqrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/dw_fsqrt.sh -------------------------------------------------------------------------------- /SCR/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/env.sh -------------------------------------------------------------------------------- /SCR/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/run_all.sh -------------------------------------------------------------------------------- /SCR/run_all64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/run_all64.sh -------------------------------------------------------------------------------- /SCR/run_dw_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/run_dw_all.sh -------------------------------------------------------------------------------- /SCR/tf32_intToFloat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf32_intToFloat.sh -------------------------------------------------------------------------------- /SCR/tf64_add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf64_add.sh -------------------------------------------------------------------------------- /SCR/tf64_div.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf64_div.sh -------------------------------------------------------------------------------- /SCR/tf64_floatToInt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf64_floatToInt.sh -------------------------------------------------------------------------------- /SCR/tf64_intToFloat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf64_intToFloat.sh -------------------------------------------------------------------------------- /SCR/tf64_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf64_mac.sh -------------------------------------------------------------------------------- /SCR/tf64_mul.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf64_mul.sh -------------------------------------------------------------------------------- /SCR/tf64_roundToInt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf64_roundToInt.sh -------------------------------------------------------------------------------- /SCR/tf64_sqrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf64_sqrt.sh -------------------------------------------------------------------------------- /SCR/tf_add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf_add.sh -------------------------------------------------------------------------------- /SCR/tf_div.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf_div.sh -------------------------------------------------------------------------------- /SCR/tf_floatToInt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf_floatToInt.sh -------------------------------------------------------------------------------- /SCR/tf_intToFloat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf_intToFloat.sh -------------------------------------------------------------------------------- /SCR/tf_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf_mac.sh -------------------------------------------------------------------------------- /SCR/tf_mul.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf_mul.sh -------------------------------------------------------------------------------- /SCR/tf_roundToInt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf_roundToInt.sh -------------------------------------------------------------------------------- /SCR/tf_sqrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/SCR/tf_sqrt.sh -------------------------------------------------------------------------------- /doc/R5FP.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/doc/R5FP.odp -------------------------------------------------------------------------------- /patching_testfloat/test_a_f32_z_i32_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_f32_z_i32_x.c -------------------------------------------------------------------------------- /patching_testfloat/test_a_f32_z_i64_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_f32_z_i64_x.c -------------------------------------------------------------------------------- /patching_testfloat/test_a_f32_z_ui32_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_f32_z_ui32_x.c -------------------------------------------------------------------------------- /patching_testfloat/test_a_f32_z_ui64_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_f32_z_ui64_x.c -------------------------------------------------------------------------------- /patching_testfloat/test_a_f64_z_i32_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_f64_z_i32_x.c -------------------------------------------------------------------------------- /patching_testfloat/test_a_f64_z_i64_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_f64_z_i64_x.c -------------------------------------------------------------------------------- /patching_testfloat/test_a_f64_z_ui32_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_f64_z_ui32_x.c -------------------------------------------------------------------------------- /patching_testfloat/test_a_f64_z_ui64_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_f64_z_ui64_x.c -------------------------------------------------------------------------------- /patching_testfloat/test_a_i32_z_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_i32_z_f32.c -------------------------------------------------------------------------------- /patching_testfloat/test_a_i32_z_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_i32_z_f64.c -------------------------------------------------------------------------------- /patching_testfloat/test_a_i64_z_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_i64_z_f32.c -------------------------------------------------------------------------------- /patching_testfloat/test_a_i64_z_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_i64_z_f64.c -------------------------------------------------------------------------------- /patching_testfloat/test_a_ui32_z_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_ui32_z_f32.c -------------------------------------------------------------------------------- /patching_testfloat/test_a_ui32_z_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_ui32_z_f64.c -------------------------------------------------------------------------------- /patching_testfloat/test_a_ui64_z_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_ui64_z_f32.c -------------------------------------------------------------------------------- /patching_testfloat/test_a_ui64_z_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_a_ui64_z_f64.c -------------------------------------------------------------------------------- /patching_testfloat/test_abcz_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_abcz_f32.c -------------------------------------------------------------------------------- /patching_testfloat/test_abcz_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_abcz_f64.c -------------------------------------------------------------------------------- /patching_testfloat/test_abz_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_abz_f32.c -------------------------------------------------------------------------------- /patching_testfloat/test_abz_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_abz_f64.c -------------------------------------------------------------------------------- /patching_testfloat/test_az_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_az_f32.c -------------------------------------------------------------------------------- /patching_testfloat/test_az_f32_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_az_f32_rx.c -------------------------------------------------------------------------------- /patching_testfloat/test_az_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_az_f64.c -------------------------------------------------------------------------------- /patching_testfloat/test_az_f64_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/patching_testfloat/test_az_f64_rx.c -------------------------------------------------------------------------------- /rtl/R5FP_add_mul.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/rtl/R5FP_add_mul.v -------------------------------------------------------------------------------- /rtl/R5FP_div.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/rtl/R5FP_div.v -------------------------------------------------------------------------------- /rtl/R5FP_inc.vh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/rtl/R5FP_inc.vh -------------------------------------------------------------------------------- /rtl/R5FP_int_div_sqrt.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/rtl/R5FP_int_div_sqrt.v -------------------------------------------------------------------------------- /rtl/R5FP_pipeline.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/rtl/R5FP_pipeline.v -------------------------------------------------------------------------------- /rtl/R5FP_postproc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/rtl/R5FP_postproc.v -------------------------------------------------------------------------------- /rtl/R5FP_sqrt.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/rtl/R5FP_sqrt.v -------------------------------------------------------------------------------- /rtl/R5FP_util.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/rtl/R5FP_util.v -------------------------------------------------------------------------------- /tb/DW_lza_function.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/DW_lza_function.inc -------------------------------------------------------------------------------- /tb/DW_lzd_function.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/DW_lzd_function.inc -------------------------------------------------------------------------------- /tb/f_div.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_div.f -------------------------------------------------------------------------------- /tb/f_sqrt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_sqrt.f -------------------------------------------------------------------------------- /tb/f_tf64_fadd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf64_fadd.f -------------------------------------------------------------------------------- /tb/f_tf64_fdiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf64_fdiv.f -------------------------------------------------------------------------------- /tb/f_tf64_floatToInt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf64_floatToInt.f -------------------------------------------------------------------------------- /tb/f_tf64_fmac.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf64_fmac.f -------------------------------------------------------------------------------- /tb/f_tf64_fmul.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf64_fmul.f -------------------------------------------------------------------------------- /tb/f_tf64_fsqrt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf64_fsqrt.f -------------------------------------------------------------------------------- /tb/f_tf64_intToFloat.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf64_intToFloat.f -------------------------------------------------------------------------------- /tb/f_tf64_roundToInt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf64_roundToInt.f -------------------------------------------------------------------------------- /tb/f_tf_fadd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf_fadd.f -------------------------------------------------------------------------------- /tb/f_tf_fdiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf_fdiv.f -------------------------------------------------------------------------------- /tb/f_tf_floatToInt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf_floatToInt.f -------------------------------------------------------------------------------- /tb/f_tf_fmac.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf_fmac.f -------------------------------------------------------------------------------- /tb/f_tf_fmul.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf_fmul.f -------------------------------------------------------------------------------- /tb/f_tf_fsqrt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf_fsqrt.f -------------------------------------------------------------------------------- /tb/f_tf_intToFloat.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf_intToFloat.f -------------------------------------------------------------------------------- /tb/f_tf_roundToInt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/f_tf_roundToInt.f -------------------------------------------------------------------------------- /tb/sim_div.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/sim_div.cpp -------------------------------------------------------------------------------- /tb/sim_fadd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/sim_fadd.cpp -------------------------------------------------------------------------------- /tb/sim_fdiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/sim_fdiv.cpp -------------------------------------------------------------------------------- /tb/sim_floatToInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/sim_floatToInt.cpp -------------------------------------------------------------------------------- /tb/sim_fmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/sim_fmac.cpp -------------------------------------------------------------------------------- /tb/sim_fmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/sim_fmul.cpp -------------------------------------------------------------------------------- /tb/sim_fsqrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/sim_fsqrt.cpp -------------------------------------------------------------------------------- /tb/sim_intToFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/sim_intToFloat.cpp -------------------------------------------------------------------------------- /tb/sim_main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/sim_main.hpp -------------------------------------------------------------------------------- /tb/sim_roundToInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/sim_roundToInt.cpp -------------------------------------------------------------------------------- /tb/sim_sqrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/sim_sqrt.cpp -------------------------------------------------------------------------------- /tb/tb_div.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/tb_div.v -------------------------------------------------------------------------------- /tb/tb_sqrt.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/tb_sqrt.v -------------------------------------------------------------------------------- /tb/tb_tf_fadd.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/tb_tf_fadd.v -------------------------------------------------------------------------------- /tb/tb_tf_fdiv.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/tb_tf_fdiv.v -------------------------------------------------------------------------------- /tb/tb_tf_floatToInt.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/tb_tf_floatToInt.v -------------------------------------------------------------------------------- /tb/tb_tf_fmac.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/tb_tf_fmac.v -------------------------------------------------------------------------------- /tb/tb_tf_fmul.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/tb_tf_fmul.v -------------------------------------------------------------------------------- /tb/tb_tf_fsqrt.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/tb_tf_fsqrt.v -------------------------------------------------------------------------------- /tb/tb_tf_intToFloat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/tb_tf_intToFloat.v -------------------------------------------------------------------------------- /tb/tb_tf_roundToInt.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb/tb_tf_roundToInt.v -------------------------------------------------------------------------------- /tb_dw/f_fadd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb_dw/f_fadd.f -------------------------------------------------------------------------------- /tb_dw/f_fdiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb_dw/f_fdiv.f -------------------------------------------------------------------------------- /tb_dw/f_fmul.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb_dw/f_fmul.f -------------------------------------------------------------------------------- /tb_dw/f_fsqrt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb_dw/f_fsqrt.f -------------------------------------------------------------------------------- /tb_dw/sim_fadd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb_dw/sim_fadd.cpp -------------------------------------------------------------------------------- /tb_dw/sim_fdiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb_dw/sim_fdiv.cpp -------------------------------------------------------------------------------- /tb_dw/sim_fmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb_dw/sim_fmac.cpp -------------------------------------------------------------------------------- /tb_dw/sim_fmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb_dw/sim_fmul.cpp -------------------------------------------------------------------------------- /tb_dw/sim_fsqrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb_dw/sim_fsqrt.cpp -------------------------------------------------------------------------------- /tb_dw/tb_fadd.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb_dw/tb_fadd.v -------------------------------------------------------------------------------- /tb_dw/tb_fdiv.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb_dw/tb_fdiv.v -------------------------------------------------------------------------------- /tb_dw/tb_fmul.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb_dw/tb_fmul.v -------------------------------------------------------------------------------- /tb_dw/tb_fsqrt.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/CNRV-FPU/HEAD/tb_dw/tb_fsqrt.v --------------------------------------------------------------------------------