SingingCat 0
application
baseinfo.h
1#ifndef BASEINFO_H
2#define BASEINFO_H 1
3typedef struct app_header {
4 uint32_t magic;
5 uint32_t length;
6 uint32_t crc;
7 uint32_t version;
8 uint32_t irqvec;
9 uint32_t entry;
10 uint32_t base;
11 uint32_t buildtime;
12 uint32_t repoid;
14typedef struct meta_header {
15 uint32_t magic;
16 uint32_t meta_seq;
17 byte version;
19
20struct app_header *get_app_header();
21struct meta_header *get_meta_header();
22struct meta_header *get_other_meta_header(void *mem);
23
24#endif