cvw/examples/C/mcmodel/mcmodel.c

10 lines
153 B
C
Raw Normal View History

2024-03-14 14:37:04 +00:00
// mcmodel.c
// Demonstrate different code generation with mcmodel = medany vs. medlow
long a;
long b[2000];
int main(void)
{
return a + b[1000];
}