We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Sorry to trouble you guys again, I have encounter this error Access violation at 0x1000000 whenever i run the program in dscope.
my code:
#include <stdio.h> #include <reg515.h> main(){
int count = 1;
printf("message");
}
is it because i dont have the configuration file? like DSCOPE.ini file? because i check the examples file, all have DSCOPE.ini configuration file then can run. If that is, how do i create DSCOPE.ini configuration file?
thanks alot!
How about now?
#include <stdio.h> #include <reg515.h> main(){ int count = 1; printf("message"); while(1) ; }
same error, is it anything to do with the configuration file, cause i do not have it in my project folder
is it anything to do with the configuration file
Probably not. This error usually indicates a run-away program in some fashion.
Jon