package calculator.model.memoryOperations;

import calculator.model.*;

public class MemoryRead extends MemoryOperation
{
    public void operate(OperandStack ops)
    {
        ops.push(memory);
    }

    public OperationType getType()
    {
        return OperationType.Zeroary;
    }
}
