Example #1
0
        public SymbolAddrTable(string id, SymbolAddrTable previous, ushort blockSize)
        {
            Id = id;

            _header      = previous;
            Instructions = new IndInstTable(this);
            _offset      = 0;
            _blockSize   = blockSize;

            _entries   = new Dictionary <string, SymbolEntry>();
            _typeTable = DataTypeTable.GetInstance();
        }
Example #2
0
 public static DataTypeTable GetInstance()
 {
     return(_self ?? (_self = new DataTypeTable()));
 }