8 lines
99 B
C
8 lines
99 B
C
#include <stdint.h>
|
|
|
|
int main(){
|
|
uint32_t* ptr = 0x800000F0;
|
|
|
|
*ptr = 1;
|
|
while(*ptr) (*ptr)++;
|
|
} |