1
1

instruction.cpp 213 B

12345678910
  1. #include "instruction.h"
  2. Instruction::Instruction(Command _command, Params _params, Parameter _a, Parameter _b, Parameter _c)
  3. : command(_command)
  4. , params(_params)
  5. , a(_a)
  6. , b(_b)
  7. , c(_c)
  8. {
  9. }