summaryrefslogtreecommitdiff
path: root/boot/stage14.elna
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2025-10-08 12:06:07 +0200
committerEugen Wissner <belka@caraus.de>2025-10-10 13:53:54 +0200
commitc6531ba3988d297e08ffa543686d68455b00b26d (patch)
tree06eb6c8e9c43476ede4beee7123ed35ae1e62e20 /boot/stage14.elna
parentaf9ad5b712003b41a981beafe519275b14d6c159 (diff)
downloadelna-c6531ba3988d297e08ffa543686d68455b00b26d.tar.gz
Extract simple expression parser
Diffstat (limited to 'boot/stage14.elna')
-rw-r--r--boot/stage14.elna6
1 files changed, 3 insertions, 3 deletions
diff --git a/boot/stage14.elna b/boot/stage14.elna
index ecb9347..9a6e18b 100644
--- a/boot/stage14.elna
+++ b/boot/stage14.elna
@@ -1598,8 +1598,8 @@ begin
_lexer_read_token(@token_kind);
if token_kind <> _lexer_token_kind_assignment() then
- (* Else we assume this is a zeroed 81920 bytes big array. *)
- _write_z(" .zero 81920\0")
+ (* Else we assume this is a zeroed 102400 bytes big array. *)
+ _write_z(" .zero 102400\0")
else
(* Skip the assignment sign with surrounding whitespaces. *)
_lexer_skip_token();
@@ -3038,7 +3038,7 @@ begin
.start_read;
(* Second argument is buffer size. Modifying update the source_code definition. *)
- last_read := _read_file(offset, 81920);
+ last_read := _read_file(offset, 102400);
if last_read > 0 then
offset := offset + last_read;
goto .start_read