From 7516085696929026ecf656f287db25192221078f Mon Sep 17 00:00:00 2001 From: Jeff Tranter Date: Sun, 5 Jul 2015 13:30:58 -0400 Subject: [PATCH] Start on 8051. --- README.md | 2 +- udis.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 947424b..ec9a8e9 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ CPU Status 8080 done -8051 possible +8051 done (incomplete) F8 possible diff --git a/udis.py b/udis.py index 197ca58..f5e1e19 100755 --- a/udis.py +++ b/udis.py @@ -58,7 +58,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 8080 z80") + print("The following CPUs are supported: 6502 65c02 6800 6809 6811 8051 8080 z80") sys.exit(1) # Get filename from command line arguments.