X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Fjtag_ejtag%2Fpd.py;h=e2bf0a59ca73e52f8e6a414516813303aeb68e25;hp=5f026fa86b9e5dbfc28e01d426fb66a1af8c6e19;hb=e144452bcdd5f2abbe6b6f3da41ad64f67e39def;hpb=4c180223a8ae12feb7bc3601e07e848fb9cdb493 diff --git a/decoders/jtag_ejtag/pd.py b/decoders/jtag_ejtag/pd.py index 5f026fa..e2bf0a5 100644 --- a/decoders/jtag_ejtag/pd.py +++ b/decoders/jtag_ejtag/pd.py @@ -191,13 +191,13 @@ regs_items = { class Decoder(srd.Decoder): api_version = 3 id = 'jtag_ejtag' - name = 'JTAG / EJTAG (MIPS)' + name = 'JTAG / EJTAG' longname = 'Joint Test Action Group / EJTAG (MIPS)' desc = 'MIPS EJTAG protocol.' license = 'gplv2+' inputs = ['jtag'] - outputs = ['jtag_ejtag'] - tags = ['Logic', 'MCU Debugging', 'Bus'] + outputs = [] + tags = ['Debug/trace'] annotations = ( ('instruction', 'Instruction'), ) + regs_items['ann'] + ( @@ -207,10 +207,10 @@ class Decoder(srd.Decoder): ) annotation_rows = ( ('instructions', 'Instructions', (0,)), - ('regs', 'Registers', regs_items['rows_range']), ('control_fields_in', 'Control fields in', (10,)), ('control_fields_out', 'Control fields out', (11,)), - ('pracc', 'PrAcc', (12,)), + ('regs', 'Registers', regs_items['rows_range']), + ('pracc-vals', 'PrAcc', (12,)), ) def __init__(self):