From 1d78e4d0f827624b617191a755cdf2e3696be083 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B6eh=20Matt?= <5415177+ZehMatt@users.noreply.github.com> Date: Sun, 30 Jun 2024 14:36:59 +0300 Subject: [PATCH] Correct the comment about CondRead --- zasm/include/zasm/base/operand.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zasm/include/zasm/base/operand.hpp b/zasm/include/zasm/base/operand.hpp index f016886..5542217 100644 --- a/zasm/include/zasm/base/operand.hpp +++ b/zasm/include/zasm/base/operand.hpp @@ -28,7 +28,7 @@ namespace zasm Read = (1U << 0), // The operand is written by the instruction (must write). Write = (1U << 1), - // The operand is conditionally written by the instruction (may write). + // The operand is conditionally read by the instruction (may read). CondRead = (1U << 2), // The operand is conditionally written by the instruction (may write). CondWrite = (1U << 3),