Beispiel #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)
Beispiel #2
0
 def readFromRom(self, rom, addr):
     self._data = EbModule.readStandardText(rom, addr, self._size)