mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
Use black code style for python scripts
Signed-off-by: Marco Liebel <quic_mliebel@quicinc.com> Signed-off-by: Taylor Simpson <tsimpson@quicinc.com> Acked-by: Taylor Simpson <tsimpson@quicinc.com> Tested-by: Taylor Simpson <tsimpson@quicinc.com> Message-Id: <20230320092533.2859433-3-quic_mliebel@quicinc.com>
This commit is contained in:
parent
cd6c4edff6
commit
5bb322e2a8
13 changed files with 1191 additions and 911 deletions
|
@ -22,6 +22,7 @@ import re
|
|||
import string
|
||||
import hex_common
|
||||
|
||||
|
||||
def main():
|
||||
hex_common.read_semantics_file(sys.argv[1])
|
||||
hex_common.read_attribs_file(sys.argv[2])
|
||||
|
@ -30,10 +31,13 @@ def main():
|
|||
##
|
||||
## Generate all the attributes associated with each instruction
|
||||
##
|
||||
with open(sys.argv[3], 'w') as f:
|
||||
with open(sys.argv[3], "w") as f:
|
||||
for tag in hex_common.tags:
|
||||
f.write(f'OP_ATTRIB({tag},ATTRIBS('
|
||||
f'{",".join(sorted(hex_common.attribdict[tag]))}))\n')
|
||||
f.write(
|
||||
f"OP_ATTRIB({tag},ATTRIBS("
|
||||
f'{",".join(sorted(hex_common.attribdict[tag]))}))\n'
|
||||
)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue