C语言函数指针实现跳转

2014-11-24 02:45:49 · 作者: · 浏览: 23

  1


  void (*theUboot)(void);


  theUboot = (void (*)(void))(0x30700000);


  theUboot();


  2


  (*(void (*)(void))(0x30700000))();