]> git.sur5r.net Git - cc65/blob - src/sim65/memory.c
Working
[cc65] / src / sim65 / memory.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 memory.h                                  */
4 /*                                                                           */
5 /*                  Memory subsystem for the 6502 simulator                  */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2002-2003 Ullrich von Bassewitz                                       */
10 /*               Römerstrasse 52                                             */
11 /*               D-70794 Filderstadt                                         */
12 /* EMail:        uz@cc65.org                                                 */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #include <stdio.h>
37 #include <string.h>
38 #include <errno.h>
39
40 /* common */
41 #include "coll.h"
42 #include "xmalloc.h"
43
44 /* sim65 */
45 #include "chip.h"
46 #include "cputype.h"
47 #include "error.h"
48 #include "memory.h"
49
50
51
52 /*****************************************************************************/
53 /*                                   Data                                    */
54 /*****************************************************************************/
55
56
57
58 /* Pointer to our memory */
59 static const ChipInstance** MemData = 0;
60 unsigned MemSize                    = 0;
61
62
63
64 /*****************************************************************************/
65 /*                                   Code                                    */
66 /*****************************************************************************/
67
68
69
70 void MemWriteByte (unsigned Addr, unsigned char Val)
71 /* Write a byte to a memory location */
72 {
73     /* Get the instance of the chip at this address */
74     const ChipInstance* CI = MemData[Addr];
75
76     /* Check if the memory is mapped */
77     if (CI == 0) {
78         Warning ("Writing to unassigned memory at $%06X", Addr);
79     } else {
80         CI->C->Data->Write (CI->Data, Addr - CI->Addr, Val);
81     }
82 }
83
84
85
86 unsigned char MemReadByte (unsigned Addr)
87 /* Read a byte from a memory location */
88 {
89     /* Get the instance of the chip at this address */
90     const ChipInstance* CI = MemData[Addr];
91
92     /* Check if the memory is mapped */
93     if (CI == 0) {
94         Warning ("Reading from unassigned memory at $%06X", Addr);
95         return 0xFF;
96     } else {
97         return CI->C->Data->Read (CI->Data, Addr - CI->Addr);
98     }
99 }
100
101
102
103 unsigned MemReadWord (unsigned Addr)
104 /* Read a word from a memory location */
105 {
106     unsigned W = MemReadByte (Addr++);
107     return (W | (MemReadByte (Addr) << 8));
108 }
109
110
111
112 unsigned MemReadZPWord (unsigned char Addr)
113 /* Read a word from the zero page. This function differs from ReadMemW in that
114  * the read will always be in the zero page, even in case of an address
115  * overflow.
116  */
117 {
118     unsigned W = MemReadByte (Addr++);
119     return (W | (MemReadByte (Addr) << 8));
120 }
121
122
123
124 void MemAssignChip (const ChipInstance* CI, unsigned Addr, unsigned Range)
125 /* Assign a chip instance to memory locations */
126 {
127     /* Make sure, the addresses are in a valid range */
128     PRECONDITION (Addr + Range <= MemSize);
129
130     /* Assign the chip instance */
131     while (Range--) {
132         CHECK (MemData[Addr] == 0);
133         MemData[Addr++] = CI;
134     }
135 }
136
137
138
139 const struct ChipInstance* MemGetChip (unsigned Addr)
140 /* Get the chip that is located at the given address (may return NULL). */
141 {
142     /* Make sure, the address is valid */
143     PRECONDITION (Addr < MemSize);
144
145     /* Return the chip instance */
146     return MemData[Addr];
147 }
148
149
150
151 void MemInit (void)
152 /* Initialize the memory subsystem */
153 {
154     unsigned I;
155
156     /* Allocate memory depending on the CPU type */
157     switch (CPU) {
158         case CPU_6502:
159         case CPU_65C02:
160             MemSize = 0x10000;
161             break;
162         default:
163             Internal ("Unexpected CPU type: %d", CPU);
164     }
165     MemData = xmalloc (MemSize * sizeof (ChipInstance*));
166
167     /* Clear the memory */
168     for (I = 0; I < MemSize; ++I) {
169         MemData[I] = 0;
170     }
171 }
172
173
174