aboutsummaryrefslogtreecommitdiffstats
path: root/host/apps/omap_debug/test.c
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2014-11-04 20:26:34 +0100
committerMartin Braun <martin.braun@ettus.com>2014-11-13 01:16:18 +0100
commitbda6bcb2301281304981380cb804babcc681641a (patch)
treea038a906104ced37e5bc4eec6a83e7ce8e77c0ac /host/apps/omap_debug/test.c
parent95aa5da3baf236cf5f2ead03d55710e8699a87b2 (diff)
downloaduhd-bda6bcb2301281304981380cb804babcc681641a.tar.gz
uhd-bda6bcb2301281304981380cb804babcc681641a.tar.bz2
uhd-bda6bcb2301281304981380cb804babcc681641a.zip
Cleaned out apps dir (deprecated tools)
Diffstat (limited to 'host/apps/omap_debug/test.c')
-rw-r--r--host/apps/omap_debug/test.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/host/apps/omap_debug/test.c b/host/apps/omap_debug/test.c
deleted file mode 100644
index 36f4d700a..000000000
--- a/host/apps/omap_debug/test.c
+++ /dev/null
@@ -1,34 +0,0 @@
-#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]);
-}
-