bootloader.h 104 B

12345678
  1. #ifndef __BOOTLOADER_H
  2. #define __BOOTLOADER_H
  3. #include "global.h"
  4. u8 boot_goto_app(u32 addr);
  5. #endif