9 lines
223 B
Batchfile
9 lines
223 B
Batchfile
::@echo off
|
|
set "HexViewPath=D:\tool\Hexview\hexview.exe"
|
|
set "Input_hex_File1=.\Boot.hex"
|
|
set "Input_hex_File2=.\ECU_APP.S19"
|
|
set "Output_hex_File=.\All.hex"
|
|
%HexViewPath% /MO:Boot.hex+ECU_APP.S19 /XI:32 -o All.hex
|
|
|
|
pause
|