• Fichier: hello.c
  • Path: /invader_nes/InvaderNES/build/cc65/samples/tutorial/hello.c
  • File size: 163 bytes
  • MIME-type: text/x-c
  • Charset: utf-8
 
Retour
#include <stdio.h>
#include <stdlib.h>

extern const char text[];       /* In text.s */

int main (void)
{
    printf ("%s\n", text);
    return EXIT_SUCCESS;
}