From d85183c7a6842a4db83635c64cf85ddf37491971 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Mon, 12 May 2025 00:06:02 +0200 Subject: Support named identifiers on the right side --- boot/test.elna | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'boot/test.elna') diff --git a/boot/test.elna b/boot/test.elna index f4ce4c5..3b7a962 100644 --- a/boot/test.elna +++ b/boot/test.elna @@ -1,14 +1,11 @@ program -proc _main(x: Word) -var loca0: Word -loca4: Word +proc _main(x: Word, y: Word) begin - loca0 := 0x0a2c3061; - loca4 := x; - _write_out(@loca4, 4) + _write_s(@x, 4); + _write_s(@y, 4) end begin - _main() + _main(0x0a2c3061, 0x0a2c3062) end. -- cgit v1.2.3