| 1234567891011121314 |
- #ifndef PARSE_H
- #define PARSE_H
- #include <QString>
- #include "instruction.h"
- int32_t process_param(const QString& cmd, bool& isSepecial);
- Instruction process_0(const QString& cmd);
- Instruction process_2(const QString& cmd, const QString& a, const QString& b);
- Instruction process_3(const QString& cmd, const QString& a, const QString& b, const QString& c);
- Instruction process_parts(const QStringList& parts);
- void process_line(QString line, QVector<QVector<Instruction>>& banks);
- #endif // PARSE_H
|