mirror of
https://github.com/cc65/cc65.git
synced 2024-11-14 05:05:45 +00:00
14 lines
342 B
C
14 lines
342 B
C
|
|
/* this is a minimal / empty c program, any supported target that has some
|
|
* sort of C support should be able to link this. Failure indicates a problem
|
|
* with the crt0 or the linker config of the respective target */
|
|
|
|
char bss_variable;
|
|
char data_variable = 42;
|
|
const char rodata_variable = 23;
|
|
|
|
void main(void)
|
|
{
|
|
/* nothing here */
|
|
}
|