Updated processor selection print statements in 'define_code_functions.py'

This commit is contained in:
Maddie Stone
2017-06-25 16:40:20 -04:00
parent 0783c690d0
commit 25eed67b8a

View File

@@ -61,9 +61,10 @@ elif processor_name == 'AVR':
smart_epilog = re.compile(r"reti{0,1}")
else:
raise NotImplementedError('Unsupported processor type.')
print "[define_code_functions.py] UNSUPPORTED PROCESSOR. Processor = %s is unsupported. Exiting." % processor_name
raise NotImplementedError('Unsupported Processor Type.')
print "[define_code_functions.py] Processor = %s -- Reg Expressions Selected. Proceeding." % processor_name
############################################################
start_addr = AskAddr(MinEA(), "Please enter the starting address for the data to be defined.")