diff --git a/others/planck.py b/others/planck.py index af9a59b..76e38c8 100644 --- a/others/planck.py +++ b/others/planck.py @@ -57,7 +57,7 @@ def read_byte(addr): def write_byte(addr, c): i = addr >> CELL_SHIFT - m = (addr % CELL)*8 + m = (addr % CELL) * 8 v = memory[i] memory[i] = (v & ~(0xff << m)) | (c&0xff) << m