Agrego comentarios

This commit is contained in:
fsandalinas 2022-09-17 21:22:51 +00:00
parent c5633c9144
commit c1534dff5d

View File

@ -266,6 +266,11 @@ label() {
label();
}
void
comment() {
while (ch != EOF && ch != '\n') ch = getchar();
}
/*
* 0x[a-f|0-9]? = HEX
@ -288,6 +293,9 @@ prgm() {
break;
case '.':
label();
break;
case ';':
comment();
case '\n':
case '\t':
case ' ':