forked from cores/microwatt
Merge pull request #110 from antonblanchard/misc
icache_tb: Improve test and include test filejtag-port
commit
326dec4b3b
Binary file not shown.
@ -0,0 +1,9 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
b = bytearray()
|
||||
for i in range(0x100):
|
||||
b = b + i.to_bytes(4, 'little')
|
||||
f = open('icache_test.bin', 'w+b')
|
||||
f.write(b)
|
||||
f.close()
|
||||
|
Loading…
Reference in New Issue