libsidplayfp  2.0.2
reloc65.h
1 /*
2  * This file is part of libsidplayfp, a SID player engine.
3  *
4  * Copyright (C) 2013-2014 Leandro Nini
5  * Copyright (C) 2001 Dag Lem
6  * Copyright (C) 1989-1997 André Fachat (a.fachat@physik.tu-chemnitz.de)
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  */
22 
23 /*
24  Modified by Dag Lem <resid@nimrod.no>
25  Relocate and extract text segment from memory buffer instead of file.
26  For use with VICE VSID.
27 
28  Ported to c++ by Leandro Nini
29 */
30 
31 #ifndef RELOC65_H
32 #define RELOC65_H
33 
38 class reloc65
39 {
40 public:
41  typedef enum
42  {
43  WHOLE,
44  TEXT,
45  DATA,
46  BSS,
47  ZEROPAGE
48  } segment_t;
49 
50 private:
51  int m_tbase, m_dbase, m_bbase, m_zbase;
52  int m_tdiff, m_ddiff, m_bdiff, m_zdiff;
53  bool m_tflag, m_dflag, m_bflag, m_zflag;
54 
55  segment_t m_extract;
56 
57 private:
58  int reldiff(unsigned char s);
59 
68  unsigned char* reloc_seg(unsigned char *buf, int len, unsigned char *rtab);
69 
76  unsigned char* reloc_globals(unsigned char *buf);
77 
78 public:
79  reloc65();
80 
87  void setReloc(segment_t type, int addr);
88 
94  void setExtract(segment_t type);
95 
102  bool reloc(unsigned char **buf, int *fsize);
103 };
104 
105 #endif
reloc65::setReloc
void setReloc(segment_t type, int addr)
Definition: reloc65.cpp:106
reloc65::setExtract
void setExtract(segment_t type)
Definition: reloc65.cpp:131
reloc65
Definition: reloc65.h:39
reloc65::reloc
bool reloc(unsigned char **buf, int *fsize)
Definition: reloc65.cpp:136