diff options
-rw-r--r-- | etc/scripts/docenizers/docenizer-arm.py | 4 | ||||
-rw-r--r-- | lib/instructionsets.ts | 4 | ||||
-rw-r--r-- | types/instructionsets.ts | 1 |
3 files changed, 2 insertions, 7 deletions
diff --git a/etc/scripts/docenizers/docenizer-arm.py b/etc/scripts/docenizers/docenizer-arm.py index cee8e1b51..dbf9c8a24 100644 --- a/etc/scripts/docenizers/docenizer-arm.py +++ b/etc/scripts/docenizers/docenizer-arm.py @@ -32,7 +32,7 @@ STRIP_SUFFIX = re.compile(r'\s*(\(.*\))?\s*(--.*)?') FLDMX_RE = re.compile(r'^(FLDM)(\*)(X)') FLDMX_SET = set(['DB', 'IA']) -#arm64 +#aarch64 CONDITION_RE = re.compile(r'^([A-Z][A-Z0-9]*\.?)(cond|<cc>)()') CONDITION_SET = set(['EQ', 'NE', 'CS', 'CC', 'MI', 'PL', 'VS', 'VC', 'HI', 'LS', 'GE', 'LT', 'GT', 'LE', 'AL']) FRINT_RE = re.compile(r'^(FRINT)(<r>)()') @@ -184,7 +184,7 @@ def docenizer(): print("Called with: {}".format(args)) with open(args.configfile) as f: - config = Config(**json.load(f)) + config = Config(**json.load(f)) print("Use configs: {}".format(json.dumps(config, default=lambda o: o.__dict__))) # If we don't have the html folder already... if not os.path.isdir(os.path.join(args.inputfolder, config.archive.subdir)): diff --git a/lib/instructionsets.ts b/lib/instructionsets.ts index f468c39cc..4471d01be 100644 --- a/lib/instructionsets.ts +++ b/lib/instructionsets.ts @@ -143,10 +143,6 @@ export class InstructionSets { target: [], path: [], }, - arm64: { - target: [], - path: [], - }, evm: { target: [], path: [], diff --git a/types/instructionsets.ts b/types/instructionsets.ts index 0e0a828e6..95ee773c0 100644 --- a/types/instructionsets.ts +++ b/types/instructionsets.ts @@ -27,7 +27,6 @@ export const InstructionSetsList = [ 'aarch64', 'amd64', 'arm32', - 'arm64', 'avr', 'beam', 'c6x', |