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 08 13:38:00 2005 +0000 (18 years ago)
permissions -rw-r--r--
last change Generalise the core debug window to allow multiple instances.
Add cpu description structure to define different cpus for use by the
debug window, in preparation for ARM implementation
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 }
.