通过寄存器地址直接读写寄存器
print_log("****** register value is 0x%x\n", (*(volatile unsigned long *)0x4*******));

(*(volatile unsigned long *)Address_hex) |= (1 << 10);
print_log("****** register value is 0x%x\n", (*(volatile unsigned long *)0x4*******));

(*(volatile unsigned long *)Address_hex) |= (1 << 10);