Skip to content
Snippets Groups Projects
Commit 720c144a authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "lrdpv2: Fix coreX_regs.cmm for non register fields"

parents 05691db7 d424f02f
No related branches found
No related tags found
No related merge requests found
...@@ -685,6 +685,8 @@ class TZCpuCtx_v2(): ...@@ -685,6 +685,8 @@ class TZCpuCtx_v2():
print_out_str(' {0:8} = 0x{1:016x}'.format( print_out_str(' {0:8} = 0x{1:016x}'.format(
reg_name, self.regs[reg_name])) reg_name, self.regs[reg_name]))
if t32_name is not None: if t32_name is not None:
if reg_name.startswith('cpu_state_'):
continue
outfile.write( outfile.write(
'r.s {0} 0x{1:x}\n'.format(t32_name, self.regs[reg_name])) 'r.s {0} 0x{1:x}\n'.format(t32_name, self.regs[reg_name]))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment