Intermediate state - doesn't run as is.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5643 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2012-04-05 13:30:21 +00:00
parent 032c16dda4
commit 10d58204b5
19 changed files with 2943 additions and 2648 deletions

View File

@@ -89,6 +89,12 @@ struct SimData {
* true. If not found, return false.
*/
unsigned char (*ReadCtrl) (unsigned Addr);
/* Read from the given address without triggering any additional action */
void (*WriteCtrl) (unsigned Addr, unsigned char Val);
/* Write to the given address without triggering additional action */
void (*Break) (const char* Format, ...);
/* Stop the CPU and display the given message */
@@ -98,7 +104,7 @@ struct SimData {
void (*NMI) (void);
/* Issue an nmi request */
};