aboutsummaryrefslogtreecommitdiffstats
path: root/src/assembler.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/assembler.py')
-rwxr-xr-xsrc/assembler.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/assembler.py b/src/assembler.py
index 3a1d39f..8a53a5c 100755
--- a/src/assembler.py
+++ b/src/assembler.py
@@ -50,7 +50,8 @@ def parse(line: str) -> list[str]:
# 1st pass, gather labels, set options, eval operations
options: dict[str, str] = {
- "stack_pointer": "6" # RG
+ "stack_pointer": "6", # RG
+ "csr_scratch": "5", # RF
}
address: int = 0