1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-27 18:55:48 +00:00

Make isReadOperation more overt.

This commit is contained in:
Thomas Harte 2020-10-17 22:27:04 -04:00
parent 3b398f7a9a
commit e5f57ea743

View File

@ -101,7 +101,7 @@ enum BusOperation {
/*!
For a machine watching only the RWB line, evaluates to @c true if the operation should be treated as a read; @c false otherwise.
*/
#define isReadOperation(v) (v < CPU::MOS6502Esque::Write)
#define isReadOperation(v) (v <= CPU::MOS6502Esque::InternalOperationRead)
/*!
For a machine watching only the RWB line, evaluates to @c true if the operation is any sort of write; @c false otherwise.