2002-03-30 16:43:27 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* memory.h */
|
|
|
|
/* */
|
|
|
|
/* Memory subsystem for the 6502 simulator */
|
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* (C) 2002 Ullrich von Bassewitz */
|
|
|
|
/* Wacholderweg 14 */
|
|
|
|
/* D-70597 Stuttgart */
|
|
|
|
/* EMail: uz@cc65.org */
|
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* This software is provided 'as-is', without any expressed or implied */
|
|
|
|
/* warranty. In no event will the authors be held liable for any damages */
|
|
|
|
/* arising from the use of this software. */
|
|
|
|
/* */
|
|
|
|
/* Permission is granted to anyone to use this software for any purpose, */
|
|
|
|
/* including commercial applications, and to alter it and redistribute it */
|
|
|
|
/* freely, subject to the following restrictions: */
|
|
|
|
/* */
|
|
|
|
/* 1. The origin of this software must not be misrepresented; you must not */
|
|
|
|
/* claim that you wrote the original software. If you use this software */
|
|
|
|
/* in a product, an acknowledgment in the product documentation would be */
|
|
|
|
/* appreciated but is not required. */
|
|
|
|
/* 2. Altered source versions must be plainly marked as such, and must not */
|
|
|
|
/* be misrepresented as being the original software. */
|
|
|
|
/* 3. This notice may not be removed or altered from any source */
|
|
|
|
/* distribution. */
|
|
|
|
/* */
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef MEMORY_H
|
|
|
|
#define MEMORY_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* Data */
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* Code */
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-03-31 20:46:53 +00:00
|
|
|
void MemWriteByte (unsigned Addr, unsigned char Val);
|
2002-03-30 16:43:27 +00:00
|
|
|
/* Write a byte to a memory location */
|
|
|
|
|
2002-03-31 20:46:53 +00:00
|
|
|
unsigned char MemReadByte (unsigned Addr);
|
2002-03-30 16:43:27 +00:00
|
|
|
/* Read a byte from a memory location */
|
|
|
|
|
2002-03-31 20:46:53 +00:00
|
|
|
unsigned MemReadWord (unsigned Addr);
|
2002-03-30 16:43:27 +00:00
|
|
|
/* Read a word from a memory location */
|
|
|
|
|
2002-03-31 20:46:53 +00:00
|
|
|
unsigned MemReadZPWord (unsigned char Addr);
|
2002-03-30 16:43:27 +00:00
|
|
|
/* Read a word from the zero page. This function differs from ReadMemW in that
|
2002-03-31 20:46:53 +00:00
|
|
|
* the read will always be in the zero page, even in case of an address
|
2002-03-30 16:43:27 +00:00
|
|
|
* overflow.
|
|
|
|
*/
|
|
|
|
|
2002-04-01 17:42:24 +00:00
|
|
|
void MemInit (void);
|
|
|
|
/* Initialize the memory subsystem */
|
|
|
|
|
2002-03-30 16:43:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* End of memory.h */
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|