|
@@ -137,16 +137,20 @@ public class SPSAssembler {
|
|
|
*/
|
|
|
public static void main(String[] args) {
|
|
|
try {
|
|
|
+ System.out.println("1");
|
|
|
destination = HARDWARE.HOLTEK;
|
|
|
|
|
|
+ System.out.println("2");
|
|
|
CommandlineProcessor.processCommandline(SPSAssembler.class, args);
|
|
|
|
|
|
+ System.out.println("3");
|
|
|
try {
|
|
|
destination = HARDWARE.valueOf((destinationStr.toUpperCase()));
|
|
|
} catch (IllegalArgumentException e) {
|
|
|
throw new HardwareException(String.format("Hardware %s unknow for this assembler", destinationStr));
|
|
|
}
|
|
|
|
|
|
+ System.out.println("4");
|
|
|
registerAllOutputter();
|
|
|
|
|
|
if ((source == null) || (!source.exists())) {
|