source:
src/Clight/test/pdata1.c
@
1878
Last change on this file since 1878 was 156, checked in by , 10 years ago | |
---|---|
File size: 172 bytes |
Line | |
---|---|
1 | /* Everything in pdata is in xdata, so pointers can be converted. */ |
2 | |
3 | __pdata int i; |
4 | |
5 | int main(void) { |
6 | __pdata int *p = &i; |
7 | __xdata int *q = p; |
8 | *q = 5; |
9 | return i; |
10 | } |
Note: See TracBrowser
for help on using the repository browser.