I am trying to write my first c application on the Atari 520ST+
I decided to use Pure C and ofter several hours of copying and trying to get the harddisk to function again I am finaly ready to start programming.
When I compile a suuuuper simple c application I keep getting Bus Error - Program Aborted.
My Test.prj file looks like this:
Code: Select all
test.prg
=
test.c
My Test.C file looks like this:
Code: Select all
int main()
{
return 0;
}
What am I doing wrong? Am I missing some setting in Pure C or something?