added better colors to MMU output

This commit is contained in:
Anton Lydike 2021-04-18 18:39:48 +02:00
parent 09844c8d38
commit fc22d4b6a7

View File

@ -2,6 +2,7 @@ from .Config import RunConfig
from .Executable import Executable, LoadedExecutable, LoadedMemorySection
from .helpers import align_addr
from .Exceptions import OutOfMemoryException
from .colors import *
from typing import Dict, List, Tuple, Optional
@ -48,7 +49,7 @@ class MMU:
self.global_symbols.update(loaded_bin.exported_symbols)
print("Successfully loaded {}".format(loaded_bin))
print(FMT_MEM + "Successfully loaded{}: {}".format(FMT_NONE, loaded_bin))
return loaded_bin