1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-29 00:29:34 +00:00

Fix strobe output.

This commit is contained in:
Thomas Harte 2022-06-13 10:49:47 -04:00
parent e484e4c9d7
commit 7dc66128c2

View File

@ -76,8 +76,8 @@ struct Transaction {
(function_code >> 1) & 1,
(function_code >> 0) & 1,
address_strobe ? 'a' : '-',
(address_strobe & 1) ? 'b' : '-',
(address_strobe & 2) ? 'w' : '-',
(data_strobes & 1) ? 'b' : '-',
(data_strobes & 2) ? 'w' : '-',
address,
read ? "->" : "<-",
value);