Skip to content
Snippets Groups Projects
Commit c16c77d3 authored by ZaynouneFatimaZahrae's avatar ZaynouneFatimaZahrae
Browse files

sa2ts

parent 9ea90dfe
Branches
No related tags found
No related merge requests found
......@@ -169,10 +169,12 @@ public class C3a2nasm implements C3aVisitor <NasmOperand> {
}
public NasmOperand visit(C3aInstParam inst){
NasmOperand label = (inst.label != null) ? inst.label.accept(this): null;
//nasm.ajouteInst(new NasmMov(label, ));
//nasm.ajouteInst(new NasmMov());
return null;
}
public NasmOperand visit(C3aInstReturn inst){
NasmOperand label = (inst.label != null) ? inst.label.accept(this): null;
nasm.ajouteInst(new NasmRet(label, ""));
return null;
}
public NasmOperand visit(C3aInstWrite inst){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment