Started to add debug infos for C functions and symbols.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5273 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -753,6 +753,7 @@ static void DoDbg (void)
|
||||
{
|
||||
static const char* Keys[] = {
|
||||
"FILE",
|
||||
"FUNC",
|
||||
"LINE",
|
||||
"SYM",
|
||||
};
|
||||
@@ -774,8 +775,9 @@ static void DoDbg (void)
|
||||
/* Check the key and dispatch to a handler */
|
||||
switch (Key) {
|
||||
case 0: DbgInfoFile (); break;
|
||||
case 1: DbgInfoLine (); break;
|
||||
case 2: DbgInfoSym (); break;
|
||||
case 1: DbgInfoFunc (); break;
|
||||
case 2: DbgInfoLine (); break;
|
||||
case 3: DbgInfoSym (); break;
|
||||
default: ErrorSkip ("Syntax error"); break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user