From 2e56bf9807898c6866856008f70ebea474f03987 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 14 Apr 2026 11:13:35 +0200 Subject: We don't use upper case for PPU registers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index be162bf..bcc8ec0 100644 --- a/README.md +++ b/README.md @@ -355,13 +355,9 @@ that makes it more apparent what they are. In a similar way, there are assignments which are simply a way to name regular numeric constants. This differs to how "variables" are assigned as they are not memory addresses that the CPU can directly access. Hence, for constant numbers -or memory addresses which are not directly tied to the CPU (i.e. memory-mapped -I/O), use upper case in the same way you would in C. +use upper case in the same way you would in C. ``` assembly -lda PPU::m_control ; bad! -lda PPU::CONTROL ; good! - bad_constant = 1 GOOD_CONSTANT = 1 ``` -- cgit v1.2.3