aboutsummaryrefslogtreecommitdiffstats
path: root/host/apps/omap_debug/test.c
diff options
context:
space:
mode:
authorroot <root@usrp1-e.(none)>2010-02-23 02:06:59 +0000
committerroot <root@usrp1-e.(none)>2010-02-23 02:06:59 +0000
commitfa35b710c09d7cb4a410313fd24d0ea2aa4172a3 (patch)
tree48628309e22ad4e8e0afcc00873f86de9c32eaf9 /host/apps/omap_debug/test.c
parentbe576635cbba32bec56974fc24f5ae859f6722da (diff)
downloaduhd-fa35b710c09d7cb4a410313fd24d0ea2aa4172a3.tar.gz
uhd-fa35b710c09d7cb4a410313fd24d0ea2aa4172a3.tar.bz2
uhd-fa35b710c09d7cb4a410313fd24d0ea2aa4172a3.zip
Initial checkin of u1e testing code. Some of these may not be really
useful anymore.
Diffstat (limited to 'host/apps/omap_debug/test.c')
-rw-r--r--host/apps/omap_debug/test.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/host/apps/omap_debug/test.c b/host/apps/omap_debug/test.c
new file mode 100644
index 000000000..36f4d700a
--- /dev/null
+++ b/host/apps/omap_debug/test.c
@@ -0,0 +1,34 @@
+#include <stdio.h>
+
+void
+main()
+{
+ int x;
+ char *y;
+ long long z;
+
+ x = 0x01020304;
+ z = 0x0102030405060708LL;
+
+ printf("%x\n",x);
+ y = (char *)&x;
+ printf("%x\n",y[0]);
+ printf("%x\n",y[1]);
+ printf("%x\n",y[2]);
+ printf("%x\n",y[3]);
+
+ printf("Printing z ...\n");
+ printf("%llx\n",z);
+ printf("Printing z done\n");
+
+ y = (char *)&z;
+ printf("%x\n",y[0]);
+ printf("%x\n",y[1]);
+ printf("%x\n",y[2]);
+ printf("%x\n",y[3]);
+ printf("%x\n",y[4]);
+ printf("%x\n",y[5]);
+ printf("%x\n",y[6]);
+ printf("%x\n",y[7]);
+}
+