From 54557d7f13de0518f4a515e10b4f9643a142ebce Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 8 Sep 2016 07:39:17 -0400 Subject: [PATCH] Added reminder, ensured the couldn't-find-data case doesn't cause a crash. Though it should imply some manual investigation. --- StaticAnalyser/Commodore/CommodoreAnalyser.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/StaticAnalyser/Commodore/CommodoreAnalyser.cpp b/StaticAnalyser/Commodore/CommodoreAnalyser.cpp index ce9890f20..f744a8b85 100644 --- a/StaticAnalyser/Commodore/CommodoreAnalyser.cpp +++ b/StaticAnalyser/Commodore/CommodoreAnalyser.cpp @@ -98,6 +98,8 @@ void StaticAnalyser::Commodore::AddTargets( else { // TODO: this is machine code. So, ummm? + printf("Need to deal with machine code from %04x to %04x???\n", files.front().starting_address, files.front().ending_address); + target.loadingCommand = "LOAD\"\",1,1\nRUN\n"; } target.tapes = tapes;