1
0
mirror of https://github.com/myhdl/myhdl.git synced 2025-01-24 21:52:56 +08:00

fix long literals in test_hec

This commit is contained in:
Keerthan Jaic 2015-03-18 01:07:06 -04:00
parent 608a233ba0
commit cafe06382d

View File

@ -117,9 +117,9 @@ def HecCalculator_v(name, hec, header):
headers = [ 0x00000000L,
0x01234567L,
0xbac6f4caL
headers = [ 0x00000000,
0x01234567,
0xbac6f4ca
]
headers.extend([randrange(2**32-1) for i in range(10)])