git-svn-id: svn://svn.cc65.org/cc65/trunk@2098 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-04-28 20:23:45 +00:00
parent e4a6273056
commit 459cfb06c1
10 changed files with 321 additions and 52 deletions

View File

@@ -66,9 +66,14 @@ static Collection ChipLibraries = STATIC_COLLECTION_INITIALIZER;
static const SimData Sim65Data = {
1, /* MajorVersion */
1, /* MinorVersion */
xmalloc, /* void* (*Malloc) (size_t Size); */
Warning, /* void (*Warning) (const char* Format, ...); */
Error /* void (*Error) (const char* Format, ...); */
xmalloc,
xfree,
Warning,
Error,
Internal,
CfgDataGetId,
CfgDataGetStr,
CfgDataGetNum
};