Added .REPEAT pseudo instruction

git-svn-id: svn://svn.cc65.org/cc65/trunk@215 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-07-28 12:15:40 +00:00
parent 77e8bffa81
commit 44a11218e1
10 changed files with 334 additions and 51 deletions

View File

@@ -39,9 +39,11 @@
#include <ctype.h>
#include <time.h>
#include "../common/cmdline.h"
#include "../common/version.h"
/* common */
#include "cmdline.h"
#include "version.h"
/* ca65 */
#include "error.h"
#include "expr.h"
#include "global.h"
@@ -301,11 +303,11 @@ static void OneLine (void)
int Done = 0;
/* Initialize the new listing line if we are actually reading from file
* and not from internally pushed input.
* and not from internally pushed input.
*/
if (!HavePushedInput ()) {
InitListingLine ();
}
}
if (Tok == TOK_COLON) {
/* An unnamed label */