parse.h 501 B

1234567891011121314
  1. #ifndef PARSE_H
  2. #define PARSE_H
  3. #include <QString>
  4. #include "instruction.h"
  5. int32_t process_param(const QString& cmd, bool& isSepecial);
  6. Instruction process_0(const QString& cmd);
  7. Instruction process_2(const QString& cmd, const QString& a, const QString& b);
  8. Instruction process_3(const QString& cmd, const QString& a, const QString& b, const QString& c);
  9. Instruction process_parts(const QStringList& parts);
  10. void process_line(QString line, QVector<QVector<Instruction>>& banks);
  11. #endif // PARSE_H