Skip to content
Snippets Groups Projects
Commit 4933f6e6 authored by Sarangdhar Joshi's avatar Sarangdhar Joshi
Browse files

linux-ramdump-parser-v2: Add newlines to avoid T32 syntax error

Running launch_t32.bat with newer T32 gives syntax errors without newlines
before "SCREEN=" and "PRINTER=WINDOWS" strings in t32_config.t32. Add
newlines before these strings to avoid T32 syntax errors.

Change-Id: I53ffd02d4c86959804a89bd744bf1ce7f42f163c
parent a71f4967
Branches
No related tags found
No related merge requests found
......@@ -717,9 +717,11 @@ class RamDump():
launch_config.write('HELP=/opt/t32/pdf\n')
launch_config.write('\n')
launch_config.write('PBI=SIM\n')
launch_config.write('\n')
launch_config.write('SCREEN=\n')
launch_config.write('FONT=SMALL\n')
launch_config.write('HEADER=Trace32-ScorpionSimulator\n')
launch_config.write('\n')
launch_config.write('PRINTER=WINDOWS\n')
launch_config.write('\n')
launch_config.write('RCL=NETASSIST\n')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment