OSDN Git Service

Remove as sg.exe is not a open source product.
[nxt-jsp/etrobo-atk.git] / lejos_osek / lejos_nxj / src / libnxt / flash_routine.h.base
1 /**
2  * Flash routine. Hardcodes the ARM7 bytecode for writing data to
3  * flash memory in the downloader binary.
4  *
5  * Copyright 2006 David Anderson <david.anderson@calixo.net>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20  * USA
21  */
22
23 #ifndef __FLASH_ROUTINE_H__
24 #define __FLASH_ROUTINE_H__
25
26 /*
27  * An array containing all the bits of the flash routine bytecode.
28  */
29 static char flash_bin[] = { ___FLASH_BIN___ };
30
31 /*
32  * The number of bytes in the above array.
33  */
34 static unsigned long flash_len = ___FLASH_LEN___;
35
36 #endif /* __FLASH_ROUTINE_H__ */