X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fz80%2Fpd.py;h=cdbebebf27e2c2f0ceb8e02beab7afc5f00d538b;hb=4d8b4da74356e2cdd8da75b4ce80c4a17e81b335;hp=b7ff9a56b16ac83cc62bba2e6781876241b306dc;hpb=10aeb8ea8b183394cebc0033f048f49f4262b57d;p=libsigrokdecode.git diff --git a/decoders/z80/pd.py b/decoders/z80/pd.py index b7ff9a5..cdbebeb 100644 --- a/decoders/z80/pd.py +++ b/decoders/z80/pd.py @@ -71,7 +71,8 @@ class Decoder(srd.Decoder): desc = 'Zilog Z80 microprocessor disassembly.' license = 'gplv3+' inputs = ['logic'] - outputs = ['z80'] + outputs = [] + tags = ['Retro computing'] channels = tuple({ 'id': 'd%d' % i, 'name': 'D%d' % i, @@ -92,15 +93,15 @@ class Decoder(srd.Decoder): } for i in range(16) ) annotations = ( - ('addr', 'Memory or I/O address'), + ('addr', 'Memory or I/O address'), ('memrd', 'Byte read from memory'), ('memwr', 'Byte written to memory'), - ('iord', 'Byte read from I/O port'), - ('iowr', 'Byte written to I/O port'), + ('iord', 'Byte read from I/O port'), + ('iowr', 'Byte written to I/O port'), ('instr', 'Z80 CPU instruction'), - ('rop', 'Value of input operand'), - ('wop', 'Value of output operand'), - ('warn', 'Warning message'), + ('rop', 'Value of input operand'), + ('wop', 'Value of output operand'), + ('warning', 'Warning'), ) annotation_rows = ( ('addrbus', 'Address bus', (Ann.ADDR,)),