X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Feeprom93xx%2Fpd.py;h=8c08fc804c3d13b83ff2b50ee48768ed951d1300;hb=7e87b2f7522312d5dda5231c1de75fb6bbbdf60c;hp=db4dd3fbc316dc55354c7b72038bfa186610029d;hpb=841cb8c0ea257b79690b0f2467ad6df7bb09cb29;p=libsigrokdecode.git diff --git a/decoders/eeprom93xx/pd.py b/decoders/eeprom93xx/pd.py index db4dd3f..8c08fc8 100644 --- a/decoders/eeprom93xx/pd.py +++ b/decoders/eeprom93xx/pd.py @@ -67,7 +67,7 @@ class Decoder(srd.Decoder): for b in range(len(data)): a += (data[b].si << (len(data) - b - 1)) self.put(data[0].ss, data[-1].es, self.out_ann, - [0, ['Address: 0x%x' % a, 'Addr: 0x%x' % a, '0x%x' % a]]) + [0, ['Address: 0x%04x' % a, 'Addr: 0x%04x' % a, '0x%04x' % a]]) self.put(data[0].ss, data[-1].es, self.out_binary, [0, bytes([a])]) def put_word(self, si, data): @@ -90,7 +90,7 @@ class Decoder(srd.Decoder): self.out_ann, [idx, ['Data: %s' % word_str, '%s' % word_str]]) else: self.put(data[0].ss, data[-1].es, - self.out_ann, [idx, ['Data: 0x%x' % word, '0x%x' % word]]) + self.out_ann, [idx, ['Data: 0x%04x' % word, '0x%04x' % word]]) self.put(data[0].ss, data[-1].es, self.out_binary, [1, bytes([(word & 0xff00) >> 8, word & 0xff])])