Exemplo n.º 1
0
        public static void AppendASMDATATextID(List <UseTextID> list, AsmMapFile.AsmMapSt p, uint startaddr, uint sizeof_)
        {
            uint end = startaddr + p.Length;

            for (uint addr = startaddr; addr < end; addr += sizeof_)
            {
                uint id = Program.ROM.u16(addr);
                list.Add(new UseTextID(FELint.Type.ASMDATA, addr, p.Name, id, addr));
            }
        }
Exemplo n.º 2
0
 public bool TryGetValue(uint pointer, out AsmMapFile.AsmMapSt out_p)
 {
     return(this.AsmMap.TryGetValue(pointer, out out_p));
 }