mirror of
https://github.com/cc65/cc65.git
synced 2024-11-01 11:04:34 +00:00
52 lines
608 B
C
52 lines
608 B
C
|
/*
|
||
|
!!DESCRIPTION!! increment/decrement
|
||
|
!!ORIGIN!! LCC 4.1 Testsuite
|
||
|
!!LICENCE!! own, freely distributeable for non-profit. read CPYRIGHT.LCC
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
printf("disassemble this program to check the generated code.\n");
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
memchar() {
|
||
|
char x, *p;
|
||
|
|
||
|
&x, &p;
|
||
|
x = *p++;
|
||
|
x = *++p;
|
||
|
x = *p--;
|
||
|
x = *--p;
|
||
|
}
|
||
|
|
||
|
memint() {
|
||
|
int x, *p;
|
||
|
|
||
|
&x, &p;
|
||
|
x = *p++;
|
||
|
x = *++p;
|
||
|
x = *p--;
|
||
|
x = *--p;
|
||
|
}
|
||
|
|
||
|
regchar() {
|
||
|
register char x, *p;
|
||
|
|
||
|
x = *p++;
|
||
|
x = *++p;
|
||
|
x = *p--;
|
||
|
x = *--p;
|
||
|
}
|
||
|
|
||
|
regint() {
|
||
|
register int x, *p;
|
||
|
|
||
|
x = *p++;
|
||
|
x = *++p;
|
||
|
x = *p--;
|
||
|
x = *--p;
|
||
|
}
|