comparison src/cs/system/bootloader/inc/optboot.h @ 0:b6a5e36de839

src/cs: initial import from Magnetite
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 15 Jul 2018 04:39:26 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:b6a5e36de839
1 /*******************************************************************************
2 *
3 * OPTBOOT.H
4 *
5 * This module contains functions which build a confirmation for each option:
6 * - get the chip id,
7 * - get the monitor id,
8 * - get the board_id.
9 *
10 * (C) Texas Instruments 1999
11 *
12 ******************************************************************************/
13
14 #ifndef __OPTBOOT_H__
15 #define __OPTBOOT_H__
16
17 #include "command.h"
18
19
20 extern void opt_get_monitor_id (t_com_request *request,
21 t_com_confirmation *confirmation);
22
23 extern void
24 opt_load_application (t_com_request *request, t_com_confirmation *confirmation, SYS_UWORD8 device_id);
25
26 extern unsigned long
27 opt_get_running_address (t_com_request *request, t_com_confirmation *confirmation);
28
29
30 #endif /* __OPTBOOT_H__ */