https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 8dc672d2a590f0cf21e69d94cb4db566bb956146 authored by a1ex on 19 June 2016, 18:13:39 UTC
Close branch Windows build_tools.
Tip revision: 8dc672d
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