mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
decodetree: Add --static-decode option
Like --decode, but do not drop 'static' qualifier. Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
@@ -979,7 +979,8 @@ def main():
|
||||
|
||||
decode_scope = 'static '
|
||||
|
||||
long_opts = ['decode=', 'translate=', 'output=', 'insnwidth=']
|
||||
long_opts = ['decode=', 'translate=', 'output=', 'insnwidth=',
|
||||
'static-decode=']
|
||||
try:
|
||||
(opts, args) = getopt.getopt(sys.argv[1:], 'o:w:', long_opts)
|
||||
except getopt.GetoptError as err:
|
||||
@@ -990,6 +991,8 @@ def main():
|
||||
elif o == '--decode':
|
||||
decode_function = a
|
||||
decode_scope = ''
|
||||
elif o == '--static-decode':
|
||||
decode_function = a
|
||||
elif o == '--translate':
|
||||
translate_prefix = a
|
||||
translate_scope = ''
|
||||
|
||||
Reference in New Issue
Block a user