move doboot to boot_renesas_rx.c

pull/316/head
Takashi Kojo 2022-08-23 14:19:14 +09:00 committed by Daniele Lacamera
parent 2590a04a14
commit 81fb762fa7
2 changed files with 5 additions and 12 deletions

View File

@ -39,6 +39,11 @@
<type>1</type>
<locationURI>PARENT-4-PROJECT_LOC/hal/renesas-rx.c</locationURI>
</link>
<link>
<name>src/wolfboot/boot_renesas_rx.c</name>
<type>1</type>
<locationURI>PARENT-4-PROJECT_LOC/src/boot_renesas_rx.c</locationURI>
</link>
<link>
<name>src/wolfboot/delta.c</name>
<type>1</type>

View File

@ -44,23 +44,11 @@ void hal_init(void)
}
#ifdef __WOLFBOOT
void hal_prepare_boot(void)
{
}
#pragma inline_asm longJump
static void longJump(unsigned long app_offset)
{
jmp r1;
}
void do_boot(const uint32_t *app_offset)
{
longJump(app_offset);
}
#endif