https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: e88806b7e62f8e10f93714cb87eaaf88eebfc404 authored by alex@thinkpad on 11 March 2017, 14:27:18 UTC
lens_focus: ported 5D2 focus fix on 50D and 500D.
Tip revision: e88806b
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