NJU-ProjectN/abstract-machine ics2023 initialized

NJU-ProjectN/abstract-machine 3348db971fd860be5cb28e21c18f9d0e65d0c96a Merge pull request #8 from Jasonyanyusong/master
This commit is contained in:
xinyangli 2023-12-21 00:20:42 +08:00
parent 2824efad33
commit 8e4feb4010
129 changed files with 9017 additions and 0 deletions

View file

@ -0,0 +1,28 @@
#!/usr/bin/env python3
from sys import argv
bin = argv[1]
fp_inst = open(bin + '-logisim-inst.txt', 'w')
fp_data0 = open(bin + '-logisim-data0.txt', 'w')
fp_data1 = open(bin + '-logisim-data1.txt', 'w')
fp_data2 = open(bin + '-logisim-data2.txt', 'w')
fp_data3 = open(bin + '-logisim-data3.txt', 'w')
for f in [fp_inst, fp_data0, fp_data1, fp_data2, fp_data3]:
f.write('v2.0 raw\n')
with open(bin, 'rb') as fp:
while True:
bytes = fp.read(4)
if not bytes:
break
fp_inst.write(bytes[::-1].hex() + ' ')
fp_data0.write("%02x " % bytes[0])
fp_data1.write("%02x " % bytes[1])
fp_data2.write("%02x " % bytes[2])
fp_data3.write("%02x " % bytes[3])
fp.close()
for f in [fp_inst, fp_data0, fp_data1, fp_data2, fp_data3]:
f.close()