1、接上ICD2,然后选debugger中的selecttools中的MPLABICD2。
2、连接上ICD2后,选择debugger菜单中的Read就能把程序读进来。
3、在VIEW菜单中的ProgramMemory就能看到程序,读到的是没有宏指令的汇编语句。
hanoi(n-1,one,three,two)move(one,three)
hanoi(n-1,two,one,three)
}
}
public static void move(char x,char y)
{
System.out.print(x)
System.out.print("-->")
System.out.println(y)
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)