Revision 974d3a2d65a1a38f1014aa132a556a8e64c12a21 authored by Daniel Fort on 13 September 2017, 03:06:11 UTC, committed by Daniel Fort on 13 September 2017, 03:06:11 UTC
1 parent 822e142
Raw File
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