-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmem.h
43 lines (36 loc) · 1.66 KB
/
mem.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
$Id: mem.h 2853 2022-10-25 06:30:43Z soci $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MEM_H
#define MEM_H
#include "attributes.h"
#include "inttypes.h"
struct Memblocks;
struct output_s;
struct mem_mark_s {
size_t omemp;
address_t ptextaddr;
address_t oaddr, oaddr2, olastaddr;
};
extern void mark_mem(struct mem_mark_s *, const struct Memblocks *, address_t, address_t);
extern void write_mark_mem(const struct mem_mark_s *, struct Memblocks *, unsigned int);
extern void list_mem(const struct mem_mark_s *, const struct Memblocks *);
extern void memclose(struct Memblocks *);
extern void memjmp(struct Memblocks *, address_t);
extern void memref(struct Memblocks *, struct Memblocks *, address_t, address_t);
extern void output_mem(struct Memblocks *, const struct output_s *);
extern FAST_CALL uint8_t *alloc_mem(struct Memblocks *, address_t);
extern int read_mem(const struct Memblocks *, address_t, size_t, address_t);
extern size_t get_mem(const struct Memblocks *);
#endif