summaryrefslogtreecommitdiffstats
path: root/test/c18/main.c
blob: 2bab5705e73494e498023c854ec08ff2c08baa46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Compile options:  -ml (Large code model) */

#include <stdio.h>

#pragma config WDT = OFF

void main (void)
{
  printf ("Hello, world!\n");

  while (1)
    ;
}