~ppsspp/ppsspp/ppsspp_1.3.0

« back to all changes in this revision

Viewing changes to ext/armips/Commands/CommandSequence.h

  • Committer: Sérgio Benjamim
  • Date: 2017-01-02 00:12:05 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20170102001205-cxbta9za203nmjwm
1.3.0 source (from ppsspp_1.3.0-r160.p5.l1762.a165.t83~56~ubuntu16.04.1.tar.xz).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#pragma once
 
2
#include "Commands/CAssemblerCommand.h"
 
3
 
 
4
class Label;
 
5
 
 
6
class CommandSequence: public CAssemblerCommand
 
7
{
 
8
public:
 
9
        CommandSequence();
 
10
        virtual ~CommandSequence();
 
11
        virtual bool Validate();
 
12
        virtual void Encode() const;
 
13
        virtual void writeTempData(TempData& tempData) const;
 
14
        virtual void writeSymData(SymbolData& symData) const;
 
15
        void addCommand(CAssemblerCommand* cmd) { commands.push_back(cmd); }
 
16
private:
 
17
        std::vector<CAssemblerCommand*> commands;
 
18
};
 
 
b'\\ No newline at end of file'