comparison gsm-fw/gpf/osl/os_isr.c @ 346:fdeea3d6582d

OSL: reconstruction of os_isr.c (_fl only) started
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Wed, 07 May 2014 19:50:01 +0000
parents
children c9dfa0e20640
comparison
equal deleted inserted replaced
345:460ed6748e4c 346:fdeea3d6582d
1 /*
2 * This C module is a reconstruction based on the disassembly of
3 * os_isr.obj in frame_na7_db_fl.lib from the Leonardo package.
4 */
5
6 /* set of included headers from COFF symtab: */
7 #include <string.h>
8 #include "gpfconf.h" /* FreeCalypso addition */
9 #include "../../nucleus/nucleus.h"
10 #include "typedefs.h"
11 #include "os.h"
12 #include "gdi.h"
13 #include "os_types.h"
14 #include "os_glob.h"
15
16 extern T_OS_OSISR_TABLE_ENTRY OSISRTable[];
17
18 GLOBAL LONG
19 os_isr_init(void)
20 {
21 USHORT i;
22
23 for (i = 1; i <= MaxOSISRs; i++)
24 OSISRTable[i].name[0] = 0;
25 return(OS_OK);
26 }