Task isolation test update

This commit is contained in:
Jiang Yufan
2023-08-22 14:10:43 +08:00
parent 379045d7eb
commit fdc1783300
3 changed files with 15 additions and 14 deletions
+3 -3
View File
@@ -17,11 +17,11 @@ def mergeBinProccess( files, fileSaveName):
f.write(bin)
if __name__ == '__main__':
file1 = r'./build/XiZi-kd233_kernel.bin'
file1 = r'./build/XiZi-edu-riscv64_kernel.bin'
file1_start_addr = 0
file2 = r'./build/XiZi-kd233_app.bin'
file2 = r'./build/XiZi-edu-riscv64_app.bin'
file2_start_addr = 1024 * 1024 + 4096
newfile = r'./build/XiZi-kd233.bin'
newfile = r'./build/XiZi-edu-riscv64.bin'
file = [ [file1 , file1_start_addr] , [file2 , file2_start_addr] ]
mergeBinProccess(file, newfile)