https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 1f7e3ce8c2262b99d55478832cc4719270036b2e authored by alex@thinkpad on 05 February 2017, 00:37:58 UTC
Function task annotations (autogenerated).
Tip revision: 1f7e3ce
reloc.h
/** \file
 * Relocation of firmware functions into RAM.
 */
#ifndef _reloc_h_
#define _reloc_h_

#include "compiler.h"

extern uintptr_t
reloc(
        uint32_t *              buf,
        uintptr_t               load_addr,
        uintptr_t               func_offset,
        size_t                  func_end,
        uintptr_t               new_pc
);


#endif // _reloc_h_
back to top