From: Luke Kenneth Casson Leighton Date: Sat, 16 Feb 2019 12:29:24 +0000 (+0000) Subject: add another random div test X-Git-Tag: ls180-24jan2020~1937 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=06bf724fefa6abc3e76fac77ebd095a1fe13294b;p=ieee754fpu.git add another random div test --- diff --git a/src/add/test_div.py b/src/add/test_div.py index 6ca4c4af..f0cacd34 100644 --- a/src/add/test_div.py +++ b/src/add/test_div.py @@ -50,6 +50,7 @@ def testbench(dut): yield from check_case(dut, 0x3F800000, 0x40000000, 0x3F000000) yield from check_case(dut, 0x3F800000, 0x40400000, 0x3EAAAAAB) yield from check_case(dut, 0x40400000, 0x41F80000, 0x3DC6318C) + yield from check_case(dut, 0x41F9EB4D, 0x429A4C70, 0x3ECF52B2) if __name__ == '__main__': dut = FPDIV(width=32)