---------------------------------------------------------------------------------------------------
| 12 | { |
| 13 | //--------------------------------------------------------------------------------------------------- |
| 14 | segment::segment( int id, const char *name, int startAddr, int size, int ofs, unsigned char type ) |
| 15 | : _name(name ? name : ""), _id(id), _startAddr(startAddr), _size(size), _ofs(ofs), _type(type) |
| 16 | { |
| 17 | } |
| 18 | //--------------------------------------------------------------------------------------------------- |
| 19 | scope::scope(int id, const char *name, int size, int parentID) |
| 20 | : _name(name ? name : ""), _id(id), _parentID(parentID), _size(size), _parent(nullptr) |
no outgoing calls
no test coverage detected