From 5bd95bd5484a70b0b0157cdc60c40ee6532c05d8 Mon Sep 17 00:00:00 2001 From: Jeff Tranter Date: Tue, 9 Jun 2020 18:14:34 -0400 Subject: [PATCH] Add missing CPUs from output message. --- udis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/udis.py b/udis.py index 84e50c8..2105004 100755 --- a/udis.py +++ b/udis.py @@ -57,7 +57,7 @@ try: exec(open(plugin).read()) except FileNotFoundError: print(("error: CPU plugin file '{}' not found.".format(plugin)), file=sys.stderr) - print("The following CPUs are supported: 6502 65c02 6800 6809 6811 8051 8080 z80") + print("The following CPUs are supported: 6502 65816 65c02 6800 6809 6811 8051 8080 8085 z80") sys.exit(1) # Get filename from command line arguments.