2016-10-04 16:01:48 +00:00
|
|
|
#include "ui.h"
|
2016-10-03 14:17:49 +00:00
|
|
|
#include "display.h"
|
2016-10-04 16:01:48 +00:00
|
|
|
|
2017-02-11 15:47:36 +00:00
|
|
|
void screen_stage1(void)
|
|
|
|
{
|
2017-02-16 12:48:28 +00:00
|
|
|
display_print("BL stage 1\n", -1);
|
2017-02-11 15:47:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void screen_stage2_jump(void)
|
|
|
|
{
|
2017-02-16 12:48:28 +00:00
|
|
|
display_print("BL stage 2 jump\n", -1);
|
2017-02-11 15:47:36 +00:00
|
|
|
}
|
2016-10-03 22:21:06 +00:00
|
|
|
|
2017-02-11 15:47:36 +00:00
|
|
|
void screen_stage2_invalid(void)
|
2016-10-03 14:17:49 +00:00
|
|
|
{
|
2017-02-16 12:48:28 +00:00
|
|
|
display_print("BL stage 2 invalid\n", -1);
|
2016-10-03 14:17:49 +00:00
|
|
|
}
|