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