23dded9d118dbdf4c6ddd1a9030875b526f6edcc
[h316.git] / pc-tools / ldc2 / src / data_block_3.cpp
1 #include "data_block_3.hh"
2
3 /*!
4 *\brief Specialisation constructor.
5 */
6 data_block_3::data_block_3(data_block & org)
7 :data_block(org)
8 {
9 m_has_known_type=false;
10 }
11
12
13 /*!
14 *\brief Describe the block.
15 *\return A vector of text lines describing this block.
16 */
17 vector<string> data_block_3::get_description(){
18 vector<string> result;
19 result.insert(result.end()," "+get_typestring()+"End Jump, absolute address");
20 return result;
21 }
22
23 /***************************************************************/
24 /*!
25 *\brief Determine if the block marks the end of an object
26 *\return true because this block is an end block.
27 */
28 bool data_block_3::is_endblock(){
29 return true;
30 }
31
32
33
34