Revision 9757810488e595638996e7b84dace5787733e9c6 authored by 1p on 18 April 2014, 01:54:37 UTC, committed by 1p on 18 April 2014, 01:54:37 UTC
1 parent fa07825
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