-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcoe_generate.py
More file actions
48 lines (35 loc) · 1.49 KB
/
coe_generate.py
File metadata and controls
48 lines (35 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import os
from config import cfg
import shutil
def coe_generate(coe, main, handler=None):
header = [
"memory_initialization_radix=16;",
"memory_initialization_vector="
]
code = open(main).readlines()
if handler:
handler = open(handler).readlines()
code = list(map(lambda line: line[:-1] + ",", code))
if handler:
handler = list(map(lambda line: line[:-1] + ",", handler))
pad = ["00000000," for i in range((0x4180 - (len(code) * 4) - 0x3000) // 4)]
if handler:
coe_file = header + code + pad + handler + ["00000000;"]
else:
coe_file = header + code + ["00000000;"]
write_file(coe_file, coe)
def write_file(program, file_dir):
program = list(map(lambda x: x + "\n", program))
open(file_dir, "w").writelines(program)
def code_gen(filename):
os.system("call mars_code.cmd {}".format(filename))
shutil.copy("code.txt", cfg.isim_code_dir)
shutil.copy("code_handler.txt", cfg.isim_code_dir)
shutil.copy("data.txt", cfg.isim_code_dir)
if __name__ == "__main__":
code_gen(r"C:\Users\Eadral\Desktop\学习\6系\计组\P8\mips_program\P1.asm")
# code_gen(r"C:\Users\Eadral\Desktop\学习\6系\计组\P8\function_test_cases\switch.asm")
path = cfg.isim_code_dir
coe_generate(os.path.join(path, "code.coe"), os.path.join(path, "code.txt"), os.path.join(path, "code_handler.txt"))
path = cfg.isim_code_dir
coe_generate(os.path.join(path, "data.coe"), os.path.join(path, "data.txt"))