import rebelsky.pal.*;

public class Jim
{
  public static void main(String[] args) {
    InstructionSequence code = new InstructionSequence();
    code.add(new Move(Register.fp, new MemLoc(new IConstant(0))));
    code.add(new Push(Register.fp));
    code.add(new Push(new MemLoc(Register.fp)));
  }
}
