summaryrefslogtreecommitdiff
path: root/decoders/z80
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2019-12-30 18:33:32 +0100
committerUwe Hermann <uwe@hermann-uwe.de>2020-01-01 01:59:46 +0100
commite144452bcdd5f2abbe6b6f3da41ad64f67e39def (patch)
treec6bfbc9325b8dca5f6a8dd196ae434bda5126e41 /decoders/z80
parenta0cbf8298d761a3615fe3c9c444b7517b437920f (diff)
downloadlibsigrokdecode-e144452bcdd5f2abbe6b6f3da41ad64f67e39def.tar.gz
libsigrokdecode-e144452bcdd5f2abbe6b6f3da41ad64f67e39def.zip
All PDs: Consistently use singular/plural for annotation classes/rows.
Diffstat (limited to 'decoders/z80')
-rw-r--r--decoders/z80/pd.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/decoders/z80/pd.py b/decoders/z80/pd.py
index fba279b..cdbebeb 100644
--- a/decoders/z80/pd.py
+++ b/decoders/z80/pd.py
@@ -93,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,)),