source: trunk/libs/newlib/src/libgloss/hp74x/test.c @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 760 bytes
Line 
1extern int led_putnum();
2#define DELAY 900000
3extern char strobe(),putDebugChar(),print(),putnum(); 
4extern char foobar();
5extern char breakpoint();
6
7#define TESTSTUB 1
8
9main()
10{
11  unsigned char x;
12  char buf[20];
13
14#if TESTIO
15  strobe();
16  outbyte ('\n');
17  outbyte ('$');
18  write (2, "Enter 5 characters... ", 24);
19  read (0, buf, 5);
20  print (buf);
21  print ("\r\n");
22  strobe ();
23#endif
24 
25#if TESTSTUB
26  print ("\r\nInit vectors...\r\n");
27/***  set_debug_traps(); ***/
28  print ("\r\nSet a breakpoint...\r\n");
29  handle_exception();
30/***  breakpoint(); ***/
31#endif
32
33  print ("\r\nTest foobar\r\n");
34  foobar();
35  /* whew, we made it */
36  print ("\r\nDone...");
37}
38
39/*
40 * FIXME: this is only hear so things will link.
41 */     
42int
43puts(s)
44     char *s;
45{
46  s++;
47}
Note: See TracBrowser for help on using the repository browser.