Ejemplo n.º 1
0
 def readFromRom(self, rom):
     for (cat, items) in self.ENTRY_LOCS:
         catDict = {}
         for (desc, loc, size) in items:
             catDict[desc] = EbModule.readStandardText(rom, loc, size)
         self._data[cat] = catDict
         updateProgress(self._pct)
Ejemplo n.º 2
0
 def readFromRom(self, rom, addr):
     self._data = EbModule.readStandardText(rom, addr, self._size)