Search
lxdream.org :: lxdream/src/tst.c
lxdream 0.9.1
released Jun 29
Download Now
filename src/tst.c
changeset 1:eea311cfd33e
author nkeynes
date Thu Dec 22 07:38:12 2005 +0000 (18 years ago)
permissions -rw-r--r--
last change Implement 95% of the SCIF serial interface
Implement basic load_bin_file function to try to load demos directly
Update TMU to run all 3 timers, start on general timing
view annotate diff log raw
     1 #define D #define
     2 #define tst(a) D a 1
     4 tst(forte)
     6 int main()
     7 {
     8 	signed int a = 0xFFFFFFFF;
     9 	unsigned int b = 0xFFFFFFFF;
    11 	a >>= 16;
    12 	b >>= 16;
    14 	printf( "%08x %08x\n", a, b );
    15 }
.