summaryrefslogtreecommitdiffstats
path: root/ue3/mycpu/cinstruction.h
diff options
context:
space:
mode:
Diffstat (limited to 'ue3/mycpu/cinstruction.h')
-rw-r--r--ue3/mycpu/cinstruction.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ue3/mycpu/cinstruction.h b/ue3/mycpu/cinstruction.h
index 942d8cf..4cc69de 100644
--- a/ue3/mycpu/cinstruction.h
+++ b/ue3/mycpu/cinstruction.h
@@ -50,7 +50,7 @@ class CInstruction
50 /** 50 /**
51 * @method operator== 51 * @method operator==
52 * @brief implementation of operator == 52 * @brief implementation of operator ==
53 * @param reference to std::string 53 * @param name reference to std::string
54 * @return true if instructionname is name 54 * @return true if instructionname is name
55 * @globalvars none 55 * @globalvars none
56 * @exception none 56 * @exception none
@@ -109,7 +109,7 @@ class CInstruction
109 * @method operator<< 109 * @method operator<<
110 * @brief Shift/output operator for outputstream 110 * @brief Shift/output operator for outputstream
111 * @param stream reference to outputstream 111 * @param stream reference to outputstream
112 * @param cdat object which will be printed to stream 112 * @param instr object which will be printed to stream
113 * @return reference to outputstream 113 * @return reference to outputstream
114 * @globalvars none 114 * @globalvars none
115 * @exception none 115 * @exception none
@@ -180,6 +180,7 @@ class CInstruction
180 180
181 protected: 181 protected:
182 /* members */ 182 /* members */
183 /** name of instruction */
183 std::string m_name; 184 std::string m_name;
184}; 185};
185 186