diff --git a/source/app.d b/source/app.d index b3e5af4..c320729 100644 --- a/source/app.d +++ b/source/app.d @@ -852,7 +852,7 @@ void readAddrMode() { case '<': case '>': addrMode = AddrMode.IMMEDIATE; - if (inOpcode && line[column] == ' ' || line[column] == '\t') + if (inOpcode && (line[column] == ' ' || line[column] == '\t')) readSpaces(); if (inOpcode && line[column] == '}') return;