git-svn-id: svn://svn.cc65.org/cc65/trunk@2143 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-05-04 21:51:13 +00:00
parent 9330f3dc6a
commit e9f6a0a3ab
9 changed files with 812 additions and 609 deletions

View File

@@ -67,9 +67,6 @@ struct SimData {
void (*Internal) (const char* Format, ...);
/* Print an internal program error and terminate */
void (*Break) (const char* Format, ...);
/* Stop the CPU and display the given message */
int (*GetCfgId) (void* CfgInfo, const char* Name, char** Id);
/* Search CfgInfo for an attribute with the given name and type "id". If
* found, remove it from the configuration, pass a pointer to a dynamically
@@ -91,6 +88,18 @@ struct SimData {
* If found, remove it from the configuration, copy it into Val and return
* true. If not found, return false.
*/
void (*Break) (const char* Format, ...);
/* Stop the CPU and display the given message */
void (*IRQ) (void);
/* Issue an irq request */
void (*NMI) (void);
/* Issue an nmi request */
};