File: storage.c

package info (click to toggle)
simulavr 0.1.2.2-6.2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 2,760 kB
  • ctags: 3,179
  • sloc: ansic: 19,986; sh: 3,623; python: 3,528; makefile: 406; asm: 308; yacc: 145; lex: 48
file content (127 lines) | stat: -rw-r--r-- 3,099 bytes parent folder | download | duplicates (5)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
 * $Id: storage.c,v 1.8 2003/12/02 08:25:00 troth Exp $
 *
 ****************************************************************************
 *
 * simulavr - A simulator for the Atmel AVR family of microcontrollers.
 * Copyright (C) 2001, 2002, 2003  Theodore A. Roth
 *
 * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 ****************************************************************************
 */

#include <config.h>

#include <stdio.h>
#include <stdlib.h>

#include "avrerror.h"
#include "avrmalloc.h"
#include "avrclass.h"
#include "storage.h"

/***************************************************************************\
 *
 * Storage(AvrClass) Methods
 *
\***************************************************************************/

Storage *
storage_new (int base, int size)
{
    Storage *stor;

    stor = avr_new (Storage, 1);
    storage_construct (stor, base, size);
    class_overload_destroy ((AvrClass *)stor, storage_destroy);

    return stor;
}

void
storage_construct (Storage *stor, int base, int size)
{
    if (stor == NULL)
        avr_error ("passed null ptr");

    class_construct ((AvrClass *)stor);

    stor->base = base;          /* address */
    stor->size = size;          /* bytes   */

    stor->data = avr_new0 (uint8_t, size);
}

/*
 * Not to be called directly, except by a derived class.
 * Called via class_unref.
 */
void
storage_destroy (void *stor)
{
    if (stor == NULL)
        return;

    avr_free (((Storage *)stor)->data);
    class_destroy (stor);
}

extern inline uint8_t
storage_readb (Storage *stor, int addr);

extern inline uint16_t
storage_readw (Storage *stor, int addr);

void
storage_writeb (Storage *stor, int addr, uint8_t val)
{
    int _addr = addr - stor->base;

    if (stor == NULL)
        avr_error ("passed null ptr");

    if ((_addr < 0) || (_addr >= stor->size))
        avr_error ("address out of bounds: 0x%x", addr);

    stor->data[_addr] = val;
}

void
storage_writew (Storage *stor, int addr, uint16_t val)
{
    int _addr = addr - stor->base;

    if (stor == NULL)
        avr_error ("passed null ptr");

    if ((_addr < 0) || (_addr >= stor->size))
        avr_error ("address out of bounds: 0x%x", addr);

    stor->data[_addr] = (uint8_t) (val >> 8 & 0xff);
    stor->data[_addr + 1] = (uint8_t) (val & 0xff);
}

int
storage_get_size (Storage *stor)
{
    return stor->size;
}

int
storage_get_base (Storage *stor)
{
    return stor->base;
}