From fccd9cd0cf8f2ee821ff51eb58f62d21a8106e93 Mon Sep 17 00:00:00 2001 From: Mario Keller Date: Thu, 6 Oct 2016 21:55:42 +0200 Subject: [PATCH] fixed wrong identation caused by tabs --- py65/monitor.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/py65/monitor.py b/py65/monitor.py index 53a9468..354c80c 100644 --- a/py65/monitor.py +++ b/py65/monitor.py @@ -45,8 +45,8 @@ class Monitor(cmd.Cmd): def __init__(self, mpu_type=NMOS6502, completekey='tab', stdin=None, stdout=None, argv=None): self.mpu_type = mpu_type - self.putc_addr = 0xF001 - self.getc_addr = 0xF004 + self.putc_addr = 0xF001 + self.getc_addr = 0xF004 if argv is None: argv = sys.argv self._breakpoints = [] @@ -69,11 +69,11 @@ class Monitor(cmd.Cmd): for opt, value in options: - if opt in ('-i', '--input'): - self.getc_addr = int(value.upper(), 16) + if opt in ('-i', '--input'): + self.getc_addr = int(value.upper(), 16) - if opt in ('-o', '--output'): - self.putc_addr = int(value.upper(), 16) + if opt in ('-o', '--output'): + self.putc_addr = int(value.upper(), 16) if opt in ('-l', '--load'): cmd = "load %s" % value