added a buffer of 64 bytes for some easily accesible persistent storage accesable via p@ and p!

This commit is contained in:
IgorCielniak
2025-12-26 15:50:37 +01:00
parent 7d6c1fb0d3
commit 357434991e
3 changed files with 38 additions and 0 deletions

View File

@@ -1793,6 +1793,8 @@ class Assembler:
"align 16",
"print_buf: resb PRINT_BUF_BYTES",
"print_buf_end:",
"align 16",
"persistent: resb 64",
]
def write_asm(self, emission: Emission, path: Path) -> None: