int main()
{
	int *p,q;

	p = 0x30000000;
	*p=100;
	*p+=20;
	q=*p;

	while( 1 )
	{
	}
}
