Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test.c « rs6000 « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8f8ea107f0f7f2c616669c1c5e4c2073a9f3733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
extern int led_putnum();
extern char putDebugChar(),print(),putnum(); 

main()
{
  char buf[20];

  outbyte ('&');
  outbyte ('@');
  outbyte ('$');
  outbyte ('%');
  print ("FooBar\r\n");

#if 0
  write (2, "Enter 5 characters... ", 24);
  read (0, buf, 5);
  print (buf);
  print ("\r\n");
#endif
  
  /* whew, we made it */
  print ("\r\nDone...");
}