comparison src/parse.c @ 52:b9856da2674a

Added file inclusion
author lost
date Sun, 04 Jan 2009 20:16:38 +0000
parents 2330b88f9600
children 035b95a3690f
comparison
equal deleted inserted replaced
51:04868fa52a15 52:b9856da2674a
45 { 45 {
46 as -> context += 1; 46 as -> context += 1;
47 return 0; 47 return 0;
48 } 48 }
49 49
50 // for output generation later 50 // for output generation later but only on pass 1
51 l -> codeaddr = as -> addr; 51 if (as -> passnum == 1)
52 l -> codeaddr = as -> addr;
52 53
53 if (!isspace(*p) && *p != '*' && *p != ';') 54 if (!isspace(*p) && *p != '*' && *p != ';')
54 { 55 {
55 // we have a symbol specified here 56 // we have a symbol specified here
56 // parse it and define 57 // parse it and define