You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
int main()
|
|
{
|
|
volatile int *mem = (int *)0x200;
|
|
*mem = 24;
|
|
for (int i = 0; i < 8; ++i)
|
|
*mem += 2;
|
|
return *mem;
|
|
}
|