OpenCores
URL https://opencores.org/ocsvn/eco32/eco32/trunk

Subversion Repositories eco32

[/] [eco32/] [trunk/] [lcc/] [tst/] [incr.c] - Blame information for rev 4

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 4 hellwig
main() {}
2
 
3
memchar() {
4
        char x, *p;
5
 
6
        &x, &p;
7
        x = *p++;
8
        x = *++p;
9
        x = *p--;
10
        x = *--p;
11
}
12
 
13
memint() {
14
        int x, *p;
15
 
16
        &x, &p;
17
        x = *p++;
18
        x = *++p;
19
        x = *p--;
20
        x = *--p;
21
}
22
 
23
regchar() {
24
        register char x, *p;
25
 
26
        x = *p++;
27
        x = *++p;
28
        x = *p--;
29
        x = *--p;
30
}
31
 
32
regint() {
33
        register int x, *p;
34
 
35
        x = *p++;
36
        x = *++p;
37
        x = *p--;
38
        x = *--p;
39
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.