[PrivMMU] cleaned up file formatting

This commit is contained in:
Anton Lydike 2021-06-08 16:34:19 +02:00
parent 3d07c97a52
commit e8685af328

View File

@ -4,6 +4,7 @@ import typing
from .ElfLoader import ElfExecutable
class PrivMMU(MMU):
def __init__(self, elf: ElfExecutable):
super(PrivMMU, self).__init__(conf=RunConfig())
@ -17,9 +18,3 @@ class PrivMMU(MMU):
def allocate_section(self, name: str, req_size: int, flag: MemoryFlags):
raise NotImplementedError("Not supported!")