z80-tools/src/nl/grauw/glass/directives/Ds.java

18 wiersze
474 B
Java

package nl.grauw.glass.directives;
import nl.grauw.glass.Line;
import nl.grauw.glass.Scope;
import nl.grauw.glass.expressions.SectionContextLiteral;
public class Ds extends Directive {
@Override
public void register(Scope scope, Line line) {
nl.grauw.glass.instructions.Ds ds = new nl.grauw.glass.instructions.Ds();
line.setInstruction(ds);
if (line.getLabel() != null)
scope.addSymbol(line.getLabel(), new SectionContextLiteral(line.getScope(), ds));
}
}