fixes for EDK 10.1 tools
[debian/gnuradio] / usrp2 / firmware / apps / test_ram.c
1 /*
2  * Copyright 2007 Free Software Foundation, Inc.
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <stdio.h>
19 #include <stdint.h>
20 #include <u2_init.h>            /* FIXME */
21 #include <sd.h>
22 #include <string.h>
23 #include <hal_io.h>
24 #include <nonstdio.h>
25 #include <hal_uart.h>
26
27 #define ASSERT_TRUE(x) \
28   do { \
29     if (!(x)){ \
30       printf("ASSERT_TRUE failed on line %d\n", __LINE__); \
31       nerrors++; \
32     } \
33   } while(0)
34
35 #define ASSERT_FALSE(x) \
36   do { \
37     if (x){ \
38       printf("ASSERT_FALSE failed on line %d\n", __LINE__); \
39       nerrors++; \
40     } \
41   } while(0)
42
43
44 #define BUFSIZE 128
45
46 int
47 main(void)
48 {
49   int i,j,k;
50
51   u2_init();
52   //hal_uart_init();
53   //puts("\ntest_ram\n");
54   
55   output_regs->ram_page = 0;
56
57   //puts("r[0]=DEADBEEF\n");
58   extram[0] = 0xDEADBEEF;
59   extram[1] = 0xF00D1234;
60   extram[7] = 0x76543210;
61   puts("RD\n");
62   i = extram[0];
63   k = extram[1];
64   j = extram[7];
65   //puts("r0=");
66   
67   puthex32_nl(i);
68   puthex32_nl(k);
69   puthex32_nl(j);
70   puts("Done");
71   hal_finish();
72   return 0;
73 }
74