]> git.sur5r.net Git - cc65/blob - test/ref/minimal.c
Only for jumps, the lib uses named asm labels in branches
[cc65] / test / ref / minimal.c
1 /*
2   !!DESCRIPTION!! minimal Program, checks if the Compiler and testsuite framework works
3   !!ORIGIN!!      testsuite
4   !!LICENCE!!     Public Domain
5   !!AUTHOR!!      Groepaz/Hitmen
6 */
7
8 #include <stdio.h>
9
10 int main(void)
11 {
12 #if 1
13     printf("it works :)\n");
14 #endif
15     return 0;
16 }