B compiler update

More progress
This commit is contained in:
rswier
2016-03-13 03:41:14 -04:00
parent a3e3a263ef
commit a7b4608711
5 changed files with 333 additions and 337 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ loop:
loop1:
c = read();
if(c==4) return;
if(c==';' & state==0) state = 2;
if(c==':' & state==0) state = 2;
if((c<'0' ^ c>'9'&c<'a' ^ c>'z') & state==0) state = 1;
line[i] = c;
i = i+1;