如果你要读的话,可以直接用指针读。如下。
int* rom_addr;
int rom_read;
rom_addr = (int*)0xfffe0000; // 取地址
rom_read = *rom_addr; // 读取0xfffe0000地址的数据
如果你要读的话,可以直接用指针读。如下。
int* rom_addr;
int rom_read;
rom_addr = (int*)0xfffe0000; // 取地址
rom_read = *rom_addr; // 读取0xfffe0000地址的数据
举报