//File inst.h #ifndef INSTH #define INSTH #include class instruction { private: int opcode,opnd; public: void setopcode(int opc) {opcode=opc;}; void setopnd(int opn) {opnd=opn;}; int getopcode() {return opcode;}; int getopnd() {return opnd;}; void show() const; }; inline void instruction::show() const { cout<<"("<