2018-08-26 00:16:37 +01:00
|
|
|
/* This file is part of the sirit project.
|
2019-07-14 22:48:59 +01:00
|
|
|
* Copyright (c) 2019 sirit
|
|
|
|
* This software may be used and distributed according to the terms of the
|
|
|
|
* 3-Clause BSD License
|
2018-08-26 00:16:37 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "stream.h"
|
|
|
|
|
|
|
|
namespace Sirit {
|
|
|
|
|
2018-10-03 04:32:45 +01:00
|
|
|
enum class OperandType { Invalid, Op, Number, String };
|
2018-08-26 00:16:37 +01:00
|
|
|
|
|
|
|
class Operand {
|
2019-03-11 06:26:21 +00:00
|
|
|
public:
|
2018-08-26 00:16:37 +01:00
|
|
|
Operand();
|
|
|
|
virtual ~Operand();
|
|
|
|
|
|
|
|
virtual void Fetch(Stream& stream) const;
|
|
|
|
virtual u16 GetWordCount() const;
|
|
|
|
|
|
|
|
virtual bool operator==(const Operand& other) const;
|
|
|
|
bool operator!=(const Operand& other) const;
|
|
|
|
|
|
|
|
OperandType GetType() const;
|
|
|
|
|
2019-03-11 06:26:21 +00:00
|
|
|
protected:
|
2018-08-26 00:16:37 +01:00
|
|
|
OperandType operand_type{};
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Sirit
|