From b2c3d3fd01e1ce09cc63cd0a8f83bae25dc976e9 Mon Sep 17 00:00:00 2001 From: Jose Rodriguez Date: Sun, 1 Feb 2026 13:29:28 +0100 Subject: [PATCH 1/3] Uses ; for ASM comments --- tools/consolidate-libs.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/consolidate-libs.py b/tools/consolidate-libs.py index 81a96db8b..8ae4354dc 100755 --- a/tools/consolidate-libs.py +++ b/tools/consolidate-libs.py @@ -82,6 +82,10 @@ def fold_files(scan: dict[FileInfo, list[str]]) -> None: if main_file_ext not in (".asm", ".bas"): continue + header = COPYRIGHT_HEADER + if main_file_ext == ".asm": + header = re.sub(r"(^|\n[ \t]*)'", r"\1;", COPYRIGHT_HEADER) + arch = file_arch(main_file) for file in files: if file == main_file: @@ -89,7 +93,7 @@ def fold_files(scan: dict[FileInfo, list[str]]) -> None: print(f"Linking {file} to {main_file} with an include") with open(file, "wt", encoding="utf-8") as f: - f.write(COPYRIGHT_HEADER) + f.write(header) f.write(f"\n#include once [arch:{arch}] <{main_file_basename}>\n") From a2c66a1c39123b6064ccbc5488ea05c0a51ad7bf Mon Sep 17 00:00:00 2001 From: Jose Rodriguez Date: Sun, 1 Feb 2026 13:31:13 +0100 Subject: [PATCH 2/3] Fix: use ; for asm comments --- src/lib/arch/zxnext/runtime/arith/_mul32.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/arith/addf.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/arith/div16.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/arith/div32.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/arith/div8.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/arith/divf.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/arith/divf16.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/arith/modf.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/arith/modf16.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/arith/mul32.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/arith/mulf.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/arith/mulf16.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/arith/sub32.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/arith/subf.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/sgn.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/sgnf.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/sgnf16.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/sgni16.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/sgni32.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/sgni8.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/sgnu16.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/sgnu32.asm | 12 ++++++------ src/lib/arch/zxnext/runtime/sgnu8.asm | 12 ++++++------ 23 files changed, 138 insertions(+), 138 deletions(-) diff --git a/src/lib/arch/zxnext/runtime/arith/_mul32.asm b/src/lib/arch/zxnext/runtime/arith/_mul32.asm index 0f8c4d04f..48b0800f6 100644 --- a/src/lib/arch/zxnext/runtime/arith/_mul32.asm +++ b/src/lib/arch/zxnext/runtime/arith/_mul32.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/arith/addf.asm b/src/lib/arch/zxnext/runtime/arith/addf.asm index b48d92e0d..176227d05 100644 --- a/src/lib/arch/zxnext/runtime/arith/addf.asm +++ b/src/lib/arch/zxnext/runtime/arith/addf.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/arith/div16.asm b/src/lib/arch/zxnext/runtime/arith/div16.asm index 120f1f1a0..e11169336 100644 --- a/src/lib/arch/zxnext/runtime/arith/div16.asm +++ b/src/lib/arch/zxnext/runtime/arith/div16.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/arith/div32.asm b/src/lib/arch/zxnext/runtime/arith/div32.asm index cccc0c78c..95758a3b3 100644 --- a/src/lib/arch/zxnext/runtime/arith/div32.asm +++ b/src/lib/arch/zxnext/runtime/arith/div32.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/arith/div8.asm b/src/lib/arch/zxnext/runtime/arith/div8.asm index b131a6ef7..5488bfb63 100644 --- a/src/lib/arch/zxnext/runtime/arith/div8.asm +++ b/src/lib/arch/zxnext/runtime/arith/div8.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/arith/divf.asm b/src/lib/arch/zxnext/runtime/arith/divf.asm index 0e8fb5494..56194aa25 100644 --- a/src/lib/arch/zxnext/runtime/arith/divf.asm +++ b/src/lib/arch/zxnext/runtime/arith/divf.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/arith/divf16.asm b/src/lib/arch/zxnext/runtime/arith/divf16.asm index dc5873d6c..7b4144547 100644 --- a/src/lib/arch/zxnext/runtime/arith/divf16.asm +++ b/src/lib/arch/zxnext/runtime/arith/divf16.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/arith/modf.asm b/src/lib/arch/zxnext/runtime/arith/modf.asm index c5b8a14b0..0998f7245 100644 --- a/src/lib/arch/zxnext/runtime/arith/modf.asm +++ b/src/lib/arch/zxnext/runtime/arith/modf.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/arith/modf16.asm b/src/lib/arch/zxnext/runtime/arith/modf16.asm index ea647fd18..d97738174 100644 --- a/src/lib/arch/zxnext/runtime/arith/modf16.asm +++ b/src/lib/arch/zxnext/runtime/arith/modf16.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/arith/mul32.asm b/src/lib/arch/zxnext/runtime/arith/mul32.asm index 16212bf1a..f11551544 100644 --- a/src/lib/arch/zxnext/runtime/arith/mul32.asm +++ b/src/lib/arch/zxnext/runtime/arith/mul32.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/arith/mulf.asm b/src/lib/arch/zxnext/runtime/arith/mulf.asm index ee75de8d6..4c10d267f 100644 --- a/src/lib/arch/zxnext/runtime/arith/mulf.asm +++ b/src/lib/arch/zxnext/runtime/arith/mulf.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/arith/mulf16.asm b/src/lib/arch/zxnext/runtime/arith/mulf16.asm index b2d8c553d..477afc3ee 100644 --- a/src/lib/arch/zxnext/runtime/arith/mulf16.asm +++ b/src/lib/arch/zxnext/runtime/arith/mulf16.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/arith/sub32.asm b/src/lib/arch/zxnext/runtime/arith/sub32.asm index a1d0f929b..26e971142 100644 --- a/src/lib/arch/zxnext/runtime/arith/sub32.asm +++ b/src/lib/arch/zxnext/runtime/arith/sub32.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/arith/subf.asm b/src/lib/arch/zxnext/runtime/arith/subf.asm index 54aa06129..19f7d42e2 100644 --- a/src/lib/arch/zxnext/runtime/arith/subf.asm +++ b/src/lib/arch/zxnext/runtime/arith/subf.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/sgn.asm b/src/lib/arch/zxnext/runtime/sgn.asm index ca8c13f71..d75fbeff2 100644 --- a/src/lib/arch/zxnext/runtime/sgn.asm +++ b/src/lib/arch/zxnext/runtime/sgn.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/sgnf.asm b/src/lib/arch/zxnext/runtime/sgnf.asm index 1e99b6348..b478c5294 100644 --- a/src/lib/arch/zxnext/runtime/sgnf.asm +++ b/src/lib/arch/zxnext/runtime/sgnf.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/sgnf16.asm b/src/lib/arch/zxnext/runtime/sgnf16.asm index ebc6b002f..53e69c4fe 100644 --- a/src/lib/arch/zxnext/runtime/sgnf16.asm +++ b/src/lib/arch/zxnext/runtime/sgnf16.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/sgni16.asm b/src/lib/arch/zxnext/runtime/sgni16.asm index 095731b0b..d46e6ee4d 100644 --- a/src/lib/arch/zxnext/runtime/sgni16.asm +++ b/src/lib/arch/zxnext/runtime/sgni16.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/sgni32.asm b/src/lib/arch/zxnext/runtime/sgni32.asm index 507e4f863..b4d02e549 100644 --- a/src/lib/arch/zxnext/runtime/sgni32.asm +++ b/src/lib/arch/zxnext/runtime/sgni32.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/sgni8.asm b/src/lib/arch/zxnext/runtime/sgni8.asm index 4c01b4850..c8334c54b 100644 --- a/src/lib/arch/zxnext/runtime/sgni8.asm +++ b/src/lib/arch/zxnext/runtime/sgni8.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/sgnu16.asm b/src/lib/arch/zxnext/runtime/sgnu16.asm index 18b51a97c..046778634 100644 --- a/src/lib/arch/zxnext/runtime/sgnu16.asm +++ b/src/lib/arch/zxnext/runtime/sgnu16.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/sgnu32.asm b/src/lib/arch/zxnext/runtime/sgnu32.asm index 4a15499da..0a0f1f8a2 100644 --- a/src/lib/arch/zxnext/runtime/sgnu32.asm +++ b/src/lib/arch/zxnext/runtime/sgnu32.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] diff --git a/src/lib/arch/zxnext/runtime/sgnu8.asm b/src/lib/arch/zxnext/runtime/sgnu8.asm index a651cf690..47e9a2b8f 100644 --- a/src/lib/arch/zxnext/runtime/sgnu8.asm +++ b/src/lib/arch/zxnext/runtime/sgnu8.asm @@ -1,8 +1,8 @@ -' ---------------------------------------------------------------- -' This file is released under the MIT License -' -' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) -' ---------------------------------------------------------------- +; ---------------------------------------------------------------- +; This file is released under the MIT License +; +; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) +; ---------------------------------------------------------------- #include once [arch:zx48k] From cf759682859b19542f989ab240e886612ee91e57 Mon Sep 17 00:00:00 2001 From: Jose Rodriguez Date: Sun, 1 Feb 2026 13:40:48 +0100 Subject: [PATCH 3/3] Update tests --- tests/functional/arch/zxnext/addf.asm | 12 ++-- tests/functional/arch/zxnext/divf00.asm | 12 ++-- tests/functional/arch/zxnext/divf01.asm | 12 ++-- tests/functional/arch/zxnext/divf16.asm | 24 ++++---- tests/functional/arch/zxnext/divf16a.asm | 24 ++++---- tests/functional/arch/zxnext/divf16b.asm | 24 ++++---- tests/functional/arch/zxnext/divf16c.asm | 24 ++++---- tests/functional/arch/zxnext/divi16a.asm | 12 ++-- tests/functional/arch/zxnext/divi16b.asm | 12 ++-- tests/functional/arch/zxnext/divi32c.asm | 12 ++-- tests/functional/arch/zxnext/divi8.asm | 12 ++-- tests/functional/arch/zxnext/divi8a.asm | 12 ++-- tests/functional/arch/zxnext/divi8b.asm | 12 ++-- tests/functional/arch/zxnext/divu16.asm | 12 ++-- tests/functional/arch/zxnext/divu16a.asm | 12 ++-- tests/functional/arch/zxnext/divu16b.asm | 12 ++-- tests/functional/arch/zxnext/divu32c.asm | 12 ++-- tests/functional/arch/zxnext/divu8.asm | 12 ++-- tests/functional/arch/zxnext/divu8a.asm | 12 ++-- tests/functional/arch/zxnext/divu8b.asm | 12 ++-- tests/functional/arch/zxnext/equf.asm | 12 ++-- tests/functional/arch/zxnext/fact.asm | 36 +++++------ tests/functional/arch/zxnext/gef16.asm | 12 ++-- tests/functional/arch/zxnext/gei32.asm | 12 ++-- tests/functional/arch/zxnext/geu32.asm | 12 ++-- tests/functional/arch/zxnext/gtf16.asm | 12 ++-- tests/functional/arch/zxnext/gti32.asm | 12 ++-- tests/functional/arch/zxnext/lei32.asm | 12 ++-- tests/functional/arch/zxnext/ltf16.asm | 12 ++-- tests/functional/arch/zxnext/lti32.asm | 12 ++-- tests/functional/arch/zxnext/ltu32.asm | 12 ++-- tests/functional/arch/zxnext/modf.asm | 12 ++-- tests/functional/arch/zxnext/modf16c.asm | 60 +++++++++---------- tests/functional/arch/zxnext/modi32c.asm | 12 ++-- tests/functional/arch/zxnext/modi8.asm | 12 ++-- tests/functional/arch/zxnext/modi8a.asm | 12 ++-- tests/functional/arch/zxnext/modi8b.asm | 12 ++-- tests/functional/arch/zxnext/modu32c.asm | 12 ++-- tests/functional/arch/zxnext/modu8.asm | 12 ++-- tests/functional/arch/zxnext/modu8a.asm | 12 ++-- tests/functional/arch/zxnext/modu8b.asm | 12 ++-- tests/functional/arch/zxnext/mulf00.asm | 12 ++-- tests/functional/arch/zxnext/mulf01.asm | 12 ++-- tests/functional/arch/zxnext/mulf16.asm | 24 ++++---- tests/functional/arch/zxnext/mulf16a.asm | 24 ++++---- tests/functional/arch/zxnext/print_i16.asm | 12 ++-- tests/functional/arch/zxnext/print_i32.asm | 12 ++-- tests/functional/arch/zxnext/print_i8.asm | 12 ++-- tests/functional/arch/zxnext/print_u16.asm | 12 ++-- tests/functional/arch/zxnext/print_u32.asm | 12 ++-- tests/functional/arch/zxnext/print_u8.asm | 12 ++-- tests/functional/arch/zxnext/sgnf.asm | 24 ++++---- tests/functional/arch/zxnext/sgnf16.asm | 24 ++++---- tests/functional/arch/zxnext/sgni16.asm | 24 ++++---- tests/functional/arch/zxnext/sgni32.asm | 24 ++++---- tests/functional/arch/zxnext/sgni8.asm | 12 ++-- tests/functional/arch/zxnext/sgnu16.asm | 12 ++-- tests/functional/arch/zxnext/sgnu32.asm | 12 ++-- tests/functional/arch/zxnext/sgnu8.asm | 12 ++-- .../arch/zxnext/stdlib_spectranet.asm | 12 ++-- tests/functional/arch/zxnext/subf00.asm | 12 ++-- tests/functional/arch/zxnext/subf01.asm | 12 ++-- tests/functional/arch/zxnext/subf16c.asm | 12 ++-- tests/functional/arch/zxnext/subi32c.asm | 12 ++-- 64 files changed, 480 insertions(+), 480 deletions(-) diff --git a/tests/functional/arch/zxnext/addf.asm b/tests/functional/arch/zxnext/addf.asm index 37fa6e724..c8b3c636d 100644 --- a/tests/functional/arch/zxnext/addf.asm +++ b/tests/functional/arch/zxnext/addf.asm @@ -54,12 +54,12 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/addf.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/addf.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/stackf.asm" ; ------------------------------------------------------------- diff --git a/tests/functional/arch/zxnext/divf00.asm b/tests/functional/arch/zxnext/divf00.asm index c398e7663..da0a18f3b 100644 --- a/tests/functional/arch/zxnext/divf00.asm +++ b/tests/functional/arch/zxnext/divf00.asm @@ -47,12 +47,12 @@ _b: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/divf.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/divf.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/stackf.asm" ; ------------------------------------------------------------- diff --git a/tests/functional/arch/zxnext/divf01.asm b/tests/functional/arch/zxnext/divf01.asm index 834a3b0e7..67c32839d 100644 --- a/tests/functional/arch/zxnext/divf01.asm +++ b/tests/functional/arch/zxnext/divf01.asm @@ -51,12 +51,12 @@ _b: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/divf.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/divf.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/stackf.asm" ; ------------------------------------------------------------- diff --git a/tests/functional/arch/zxnext/divf16.asm b/tests/functional/arch/zxnext/divf16.asm index 8fff86ee2..8a2a54ee7 100644 --- a/tests/functional/arch/zxnext/divf16.asm +++ b/tests/functional/arch/zxnext/divf16.asm @@ -98,20 +98,20 @@ _b: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/divf16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/divf16.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/neg32.asm" push namespace core diff --git a/tests/functional/arch/zxnext/divf16a.asm b/tests/functional/arch/zxnext/divf16a.asm index 76c3de713..3a85505f8 100644 --- a/tests/functional/arch/zxnext/divf16a.asm +++ b/tests/functional/arch/zxnext/divf16a.asm @@ -43,20 +43,20 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/divf16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/divf16.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/neg32.asm" push namespace core diff --git a/tests/functional/arch/zxnext/divf16b.asm b/tests/functional/arch/zxnext/divf16b.asm index 803fc41e9..8215bcb86 100644 --- a/tests/functional/arch/zxnext/divf16b.asm +++ b/tests/functional/arch/zxnext/divf16b.asm @@ -53,20 +53,20 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/divf16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/divf16.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/neg32.asm" push namespace core diff --git a/tests/functional/arch/zxnext/divf16c.asm b/tests/functional/arch/zxnext/divf16c.asm index e23a54d39..ba334fab9 100644 --- a/tests/functional/arch/zxnext/divf16c.asm +++ b/tests/functional/arch/zxnext/divf16c.asm @@ -85,20 +85,20 @@ _l: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/divf16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/divf16.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/neg32.asm" push namespace core diff --git a/tests/functional/arch/zxnext/divi16a.asm b/tests/functional/arch/zxnext/divi16a.asm index 654924c74..d3ddff193 100644 --- a/tests/functional/arch/zxnext/divi16a.asm +++ b/tests/functional/arch/zxnext/divi16a.asm @@ -35,12 +35,12 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div16.asm" ; 16 bit division and modulo functions ; for both signed and unsigned values diff --git a/tests/functional/arch/zxnext/divi16b.asm b/tests/functional/arch/zxnext/divi16b.asm index 1f1579086..a9abbb4a5 100644 --- a/tests/functional/arch/zxnext/divi16b.asm +++ b/tests/functional/arch/zxnext/divi16b.asm @@ -42,12 +42,12 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div16.asm" ; 16 bit division and modulo functions ; for both signed and unsigned values diff --git a/tests/functional/arch/zxnext/divi32c.asm b/tests/functional/arch/zxnext/divi32c.asm index ccdb1d51a..8032f1097 100644 --- a/tests/functional/arch/zxnext/divi32c.asm +++ b/tests/functional/arch/zxnext/divi32c.asm @@ -88,12 +88,12 @@ _l: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/neg32.asm" push namespace core diff --git a/tests/functional/arch/zxnext/divi8.asm b/tests/functional/arch/zxnext/divi8.asm index bb797ef48..cac68778c 100644 --- a/tests/functional/arch/zxnext/divi8.asm +++ b/tests/functional/arch/zxnext/divi8.asm @@ -58,12 +58,12 @@ _b: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div8.asm" ; -------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/divi8a.asm b/tests/functional/arch/zxnext/divi8a.asm index eb49f9817..d2d17a125 100644 --- a/tests/functional/arch/zxnext/divi8a.asm +++ b/tests/functional/arch/zxnext/divi8a.asm @@ -35,12 +35,12 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div8.asm" ; -------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/divi8b.asm b/tests/functional/arch/zxnext/divi8b.asm index baa23cc43..6167a3b63 100644 --- a/tests/functional/arch/zxnext/divi8b.asm +++ b/tests/functional/arch/zxnext/divi8b.asm @@ -41,12 +41,12 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div8.asm" ; -------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/divu16.asm b/tests/functional/arch/zxnext/divu16.asm index ad677a4ce..d864a7b02 100644 --- a/tests/functional/arch/zxnext/divu16.asm +++ b/tests/functional/arch/zxnext/divu16.asm @@ -59,12 +59,12 @@ _b: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div16.asm" ; 16 bit division and modulo functions ; for both signed and unsigned values diff --git a/tests/functional/arch/zxnext/divu16a.asm b/tests/functional/arch/zxnext/divu16a.asm index d5c4cb928..f435badbd 100644 --- a/tests/functional/arch/zxnext/divu16a.asm +++ b/tests/functional/arch/zxnext/divu16a.asm @@ -35,12 +35,12 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div16.asm" ; 16 bit division and modulo functions ; for both signed and unsigned values diff --git a/tests/functional/arch/zxnext/divu16b.asm b/tests/functional/arch/zxnext/divu16b.asm index fd5e23746..b296a0e3a 100644 --- a/tests/functional/arch/zxnext/divu16b.asm +++ b/tests/functional/arch/zxnext/divu16b.asm @@ -42,12 +42,12 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div16.asm" ; 16 bit division and modulo functions ; for both signed and unsigned values diff --git a/tests/functional/arch/zxnext/divu32c.asm b/tests/functional/arch/zxnext/divu32c.asm index 3fd2607d3..581d0b191 100644 --- a/tests/functional/arch/zxnext/divu32c.asm +++ b/tests/functional/arch/zxnext/divu32c.asm @@ -88,12 +88,12 @@ _l: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/neg32.asm" push namespace core diff --git a/tests/functional/arch/zxnext/divu8.asm b/tests/functional/arch/zxnext/divu8.asm index 2a4d98320..6a31559eb 100644 --- a/tests/functional/arch/zxnext/divu8.asm +++ b/tests/functional/arch/zxnext/divu8.asm @@ -58,12 +58,12 @@ _b: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div8.asm" ; -------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/divu8a.asm b/tests/functional/arch/zxnext/divu8a.asm index 92ec2d0e0..7e236c98d 100644 --- a/tests/functional/arch/zxnext/divu8a.asm +++ b/tests/functional/arch/zxnext/divu8a.asm @@ -35,12 +35,12 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div8.asm" ; -------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/divu8b.asm b/tests/functional/arch/zxnext/divu8b.asm index 7dad972bd..b8509aea6 100644 --- a/tests/functional/arch/zxnext/divu8b.asm +++ b/tests/functional/arch/zxnext/divu8b.asm @@ -41,12 +41,12 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div8.asm" ; -------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/equf.asm b/tests/functional/arch/zxnext/equf.asm index c1f454320..918367e2e 100644 --- a/tests/functional/arch/zxnext/equf.asm +++ b/tests/functional/arch/zxnext/equf.asm @@ -46,12 +46,12 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/addf.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/addf.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/stackf.asm" ; ------------------------------------------------------------- diff --git a/tests/functional/arch/zxnext/fact.asm b/tests/functional/arch/zxnext/fact.asm index f234d54d5..7e875f4ad 100644 --- a/tests/functional/arch/zxnext/fact.asm +++ b/tests/functional/arch/zxnext/fact.asm @@ -97,20 +97,20 @@ _fact__leave: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/mul32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/mul32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/_mul32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/_mul32.asm" ; Ripped from: http://www.andreadrian.de/oldcpu/z80_number_cruncher.html#moztocid784223 ; Used with permission. @@ -196,12 +196,12 @@ __TO32BIT: ; Converts H'L'HLB'C'AC to DEHL (Discards H'L'HL) #line 9 "/zxbasic/src/lib/arch/zxnext/runtime/arith/mul32.asm" #line 79 "arch/zxnext/fact.bas" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/sub32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/sub32.asm" ; SUB32 ; Perform TOP of the stack - DEHL diff --git a/tests/functional/arch/zxnext/gef16.asm b/tests/functional/arch/zxnext/gef16.asm index 68fdd84df..d90cc89ef 100644 --- a/tests/functional/arch/zxnext/gef16.asm +++ b/tests/functional/arch/zxnext/gef16.asm @@ -105,12 +105,12 @@ _l: ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/cmp/lti32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/sub32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/sub32.asm" ; SUB32 ; Perform TOP of the stack - DEHL diff --git a/tests/functional/arch/zxnext/gei32.asm b/tests/functional/arch/zxnext/gei32.asm index 0a085d107..de31b572d 100644 --- a/tests/functional/arch/zxnext/gei32.asm +++ b/tests/functional/arch/zxnext/gei32.asm @@ -121,12 +121,12 @@ _l: ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/cmp/lti32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/sub32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/sub32.asm" ; SUB32 ; Perform TOP of the stack - DEHL diff --git a/tests/functional/arch/zxnext/geu32.asm b/tests/functional/arch/zxnext/geu32.asm index 308414e69..d66a4656b 100644 --- a/tests/functional/arch/zxnext/geu32.asm +++ b/tests/functional/arch/zxnext/geu32.asm @@ -120,12 +120,12 @@ _l: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/sub32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/sub32.asm" ; SUB32 ; Perform TOP of the stack - DEHL diff --git a/tests/functional/arch/zxnext/gtf16.asm b/tests/functional/arch/zxnext/gtf16.asm index 0df55aa79..3a39cde3e 100644 --- a/tests/functional/arch/zxnext/gtf16.asm +++ b/tests/functional/arch/zxnext/gtf16.asm @@ -105,12 +105,12 @@ _l: ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/cmp/lei32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/sub32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/sub32.asm" ; SUB32 ; Perform TOP of the stack - DEHL diff --git a/tests/functional/arch/zxnext/gti32.asm b/tests/functional/arch/zxnext/gti32.asm index 37f8a793d..1c37f5ffd 100644 --- a/tests/functional/arch/zxnext/gti32.asm +++ b/tests/functional/arch/zxnext/gti32.asm @@ -121,12 +121,12 @@ _l: ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/cmp/lei32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/sub32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/sub32.asm" ; SUB32 ; Perform TOP of the stack - DEHL diff --git a/tests/functional/arch/zxnext/lei32.asm b/tests/functional/arch/zxnext/lei32.asm index 9c2c9ca96..4e337f4b7 100644 --- a/tests/functional/arch/zxnext/lei32.asm +++ b/tests/functional/arch/zxnext/lei32.asm @@ -106,12 +106,12 @@ _l: ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/cmp/lei32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/sub32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/sub32.asm" ; SUB32 ; Perform TOP of the stack - DEHL diff --git a/tests/functional/arch/zxnext/ltf16.asm b/tests/functional/arch/zxnext/ltf16.asm index 9296fa20a..44a6fccaf 100644 --- a/tests/functional/arch/zxnext/ltf16.asm +++ b/tests/functional/arch/zxnext/ltf16.asm @@ -93,12 +93,12 @@ _l: ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/cmp/lti32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/sub32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/sub32.asm" ; SUB32 ; Perform TOP of the stack - DEHL diff --git a/tests/functional/arch/zxnext/lti32.asm b/tests/functional/arch/zxnext/lti32.asm index e2090c640..fd9c08a94 100644 --- a/tests/functional/arch/zxnext/lti32.asm +++ b/tests/functional/arch/zxnext/lti32.asm @@ -106,12 +106,12 @@ _l: ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/cmp/lti32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/sub32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/sub32.asm" ; SUB32 ; Perform TOP of the stack - DEHL diff --git a/tests/functional/arch/zxnext/ltu32.asm b/tests/functional/arch/zxnext/ltu32.asm index 5850b0370..2b1a05ea4 100644 --- a/tests/functional/arch/zxnext/ltu32.asm +++ b/tests/functional/arch/zxnext/ltu32.asm @@ -115,12 +115,12 @@ _l: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/sub32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/sub32.asm" ; SUB32 ; Perform TOP of the stack - DEHL diff --git a/tests/functional/arch/zxnext/modf.asm b/tests/functional/arch/zxnext/modf.asm index 66b8ae1b2..caffde7eb 100644 --- a/tests/functional/arch/zxnext/modf.asm +++ b/tests/functional/arch/zxnext/modf.asm @@ -37,12 +37,12 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/modf.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/modf.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/stackf.asm" ; ------------------------------------------------------------- diff --git a/tests/functional/arch/zxnext/modf16c.asm b/tests/functional/arch/zxnext/modf16c.asm index 3f27c5d53..0ca0b87b3 100644 --- a/tests/functional/arch/zxnext/modf16c.asm +++ b/tests/functional/arch/zxnext/modf16c.asm @@ -85,29 +85,29 @@ _l: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/modf16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/modf16.asm" ; Computes A % B for fixed values #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/divf16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/divf16.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/neg32.asm" push namespace core @@ -321,20 +321,20 @@ __ENDF16DIV: ; Put the sign on the result #line 9 "/zxbasic/src/lib/arch/zxnext/runtime/arith/divf16.asm" #line 4 "/zxbasic/src/lib/arch/zx48k/runtime/arith/modf16.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/mulf16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/mulf16.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/_mul32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/_mul32.asm" ; Ripped from: http://www.andreadrian.de/oldcpu/z80_number_cruncher.html#moztocid784223 ; Used with permission. diff --git a/tests/functional/arch/zxnext/modi32c.asm b/tests/functional/arch/zxnext/modi32c.asm index 4f60900d6..275a73e93 100644 --- a/tests/functional/arch/zxnext/modi32c.asm +++ b/tests/functional/arch/zxnext/modi32c.asm @@ -88,12 +88,12 @@ _l: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/neg32.asm" push namespace core diff --git a/tests/functional/arch/zxnext/modi8.asm b/tests/functional/arch/zxnext/modi8.asm index 72780f141..88c9e15b8 100644 --- a/tests/functional/arch/zxnext/modi8.asm +++ b/tests/functional/arch/zxnext/modi8.asm @@ -57,12 +57,12 @@ _b: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div8.asm" ; -------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/modi8a.asm b/tests/functional/arch/zxnext/modi8a.asm index 69023bf2e..ee3b7f28a 100644 --- a/tests/functional/arch/zxnext/modi8a.asm +++ b/tests/functional/arch/zxnext/modi8a.asm @@ -35,12 +35,12 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div8.asm" ; -------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/modi8b.asm b/tests/functional/arch/zxnext/modi8b.asm index fe2ca67d4..3455987b9 100644 --- a/tests/functional/arch/zxnext/modi8b.asm +++ b/tests/functional/arch/zxnext/modi8b.asm @@ -41,12 +41,12 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div8.asm" ; -------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/modu32c.asm b/tests/functional/arch/zxnext/modu32c.asm index c50be0120..28f8ecf51 100644 --- a/tests/functional/arch/zxnext/modu32c.asm +++ b/tests/functional/arch/zxnext/modu32c.asm @@ -88,12 +88,12 @@ _l: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/neg32.asm" push namespace core diff --git a/tests/functional/arch/zxnext/modu8.asm b/tests/functional/arch/zxnext/modu8.asm index 14c0ec2b9..5527e0e55 100644 --- a/tests/functional/arch/zxnext/modu8.asm +++ b/tests/functional/arch/zxnext/modu8.asm @@ -57,12 +57,12 @@ _b: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div8.asm" ; -------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/modu8a.asm b/tests/functional/arch/zxnext/modu8a.asm index dc6511722..c5c067e1d 100644 --- a/tests/functional/arch/zxnext/modu8a.asm +++ b/tests/functional/arch/zxnext/modu8a.asm @@ -35,12 +35,12 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div8.asm" ; -------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/modu8b.asm b/tests/functional/arch/zxnext/modu8b.asm index 47fb7741d..d0f35a0e4 100644 --- a/tests/functional/arch/zxnext/modu8b.asm +++ b/tests/functional/arch/zxnext/modu8b.asm @@ -41,12 +41,12 @@ _a: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div8.asm" ; -------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/mulf00.asm b/tests/functional/arch/zxnext/mulf00.asm index 8e0133423..f575707be 100644 --- a/tests/functional/arch/zxnext/mulf00.asm +++ b/tests/functional/arch/zxnext/mulf00.asm @@ -47,12 +47,12 @@ _b: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/mulf.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/mulf.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/stackf.asm" ; ------------------------------------------------------------- diff --git a/tests/functional/arch/zxnext/mulf01.asm b/tests/functional/arch/zxnext/mulf01.asm index 8ff9e79b3..d2f80a325 100644 --- a/tests/functional/arch/zxnext/mulf01.asm +++ b/tests/functional/arch/zxnext/mulf01.asm @@ -51,12 +51,12 @@ _b: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/mulf.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/mulf.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/stackf.asm" ; ------------------------------------------------------------- diff --git a/tests/functional/arch/zxnext/mulf16.asm b/tests/functional/arch/zxnext/mulf16.asm index 9e16165d2..73797e05d 100644 --- a/tests/functional/arch/zxnext/mulf16.asm +++ b/tests/functional/arch/zxnext/mulf16.asm @@ -62,12 +62,12 @@ _b: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/mulf16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/mulf16.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/neg32.asm" push namespace core @@ -96,12 +96,12 @@ __NEG32: ; Negates DEHL (Two's complement) pop namespace #line 2 "/zxbasic/src/lib/arch/zx48k/runtime/arith/mulf16.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/_mul32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/_mul32.asm" ; Ripped from: http://www.andreadrian.de/oldcpu/z80_number_cruncher.html#moztocid784223 ; Used with permission. diff --git a/tests/functional/arch/zxnext/mulf16a.asm b/tests/functional/arch/zxnext/mulf16a.asm index f98844c69..55ca31cba 100644 --- a/tests/functional/arch/zxnext/mulf16a.asm +++ b/tests/functional/arch/zxnext/mulf16a.asm @@ -46,12 +46,12 @@ _b: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/mulf16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/mulf16.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/neg32.asm" push namespace core @@ -80,12 +80,12 @@ __NEG32: ; Negates DEHL (Two's complement) pop namespace #line 2 "/zxbasic/src/lib/arch/zx48k/runtime/arith/mulf16.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/_mul32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/_mul32.asm" ; Ripped from: http://www.andreadrian.de/oldcpu/z80_number_cruncher.html#moztocid784223 ; Used with permission. diff --git a/tests/functional/arch/zxnext/print_i16.asm b/tests/functional/arch/zxnext/print_i16.asm index 8d21a531e..570b3e2a3 100644 --- a/tests/functional/arch/zxnext/print_i16.asm +++ b/tests/functional/arch/zxnext/print_i16.asm @@ -972,12 +972,12 @@ __PRINT_MINUS: ; PRINT the MINUS (-) sign. CALLER must preserve registers pop namespace #line 2 "/zxbasic/src/lib/arch/zxnext/runtime/printi16.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div16.asm" ; 16 bit division and modulo functions ; for both signed and unsigned values diff --git a/tests/functional/arch/zxnext/print_i32.asm b/tests/functional/arch/zxnext/print_i32.asm index 9c2593eb1..24954cfe5 100644 --- a/tests/functional/arch/zxnext/print_i32.asm +++ b/tests/functional/arch/zxnext/print_i32.asm @@ -999,12 +999,12 @@ __NEG32: ; Negates DEHL (Two's complement) pop namespace #line 3 "/zxbasic/src/lib/arch/zxnext/runtime/printi32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div32.asm" ; --------------------------------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/print_i8.asm b/tests/functional/arch/zxnext/print_i8.asm index ba879845d..9a3d90cb1 100644 --- a/tests/functional/arch/zxnext/print_i8.asm +++ b/tests/functional/arch/zxnext/print_i8.asm @@ -972,12 +972,12 @@ __PRINT_MINUS: ; PRINT the MINUS (-) sign. CALLER must preserve registers pop namespace #line 2 "/zxbasic/src/lib/arch/zxnext/runtime/printi8.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div8.asm" ; -------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/print_u16.asm b/tests/functional/arch/zxnext/print_u16.asm index 785cfec93..99b32db29 100644 --- a/tests/functional/arch/zxnext/print_u16.asm +++ b/tests/functional/arch/zxnext/print_u16.asm @@ -973,12 +973,12 @@ __PRINT_MINUS: ; PRINT the MINUS (-) sign. CALLER must preserve registers pop namespace #line 2 "/zxbasic/src/lib/arch/zxnext/runtime/printi16.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div16.asm" ; 16 bit division and modulo functions ; for both signed and unsigned values diff --git a/tests/functional/arch/zxnext/print_u32.asm b/tests/functional/arch/zxnext/print_u32.asm index ea8865d0e..29f8dee6c 100644 --- a/tests/functional/arch/zxnext/print_u32.asm +++ b/tests/functional/arch/zxnext/print_u32.asm @@ -1000,12 +1000,12 @@ __NEG32: ; Negates DEHL (Two's complement) pop namespace #line 3 "/zxbasic/src/lib/arch/zxnext/runtime/printi32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div32.asm" ; --------------------------------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/print_u8.asm b/tests/functional/arch/zxnext/print_u8.asm index 483676c33..0a4d6325e 100644 --- a/tests/functional/arch/zxnext/print_u8.asm +++ b/tests/functional/arch/zxnext/print_u8.asm @@ -973,12 +973,12 @@ __PRINT_MINUS: ; PRINT the MINUS (-) sign. CALLER must preserve registers pop namespace #line 2 "/zxbasic/src/lib/arch/zxnext/runtime/printi8.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div8.asm" ; -------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/sgnf.asm b/tests/functional/arch/zxnext/sgnf.asm index 7bb8739a0..1915e4439 100644 --- a/tests/functional/arch/zxnext/sgnf.asm +++ b/tests/functional/arch/zxnext/sgnf.asm @@ -38,20 +38,20 @@ _y: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/sgnf.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/sgnf.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/sgn.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/sgn.asm" ; Returns SGN (SIGN) for 32, 16 and 8 bits signed integers, Fixed and FLOAT push namespace core diff --git a/tests/functional/arch/zxnext/sgnf16.asm b/tests/functional/arch/zxnext/sgnf16.asm index 835e3e446..9d4c01650 100644 --- a/tests/functional/arch/zxnext/sgnf16.asm +++ b/tests/functional/arch/zxnext/sgnf16.asm @@ -36,20 +36,20 @@ _y: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/sgnf16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/sgnf16.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/sgn.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/sgn.asm" ; Returns SGN (SIGN) for 32, 16 and 8 bits signed integers, Fixed and FLOAT push namespace core diff --git a/tests/functional/arch/zxnext/sgni16.asm b/tests/functional/arch/zxnext/sgni16.asm index 40f0205f3..e6a9f8a93 100644 --- a/tests/functional/arch/zxnext/sgni16.asm +++ b/tests/functional/arch/zxnext/sgni16.asm @@ -33,20 +33,20 @@ _y: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/sgni16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/sgni16.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/sgn.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/sgn.asm" ; Returns SGN (SIGN) for 32, 16 and 8 bits signed integers, Fixed and FLOAT push namespace core diff --git a/tests/functional/arch/zxnext/sgni32.asm b/tests/functional/arch/zxnext/sgni32.asm index cd6786f83..691d66604 100644 --- a/tests/functional/arch/zxnext/sgni32.asm +++ b/tests/functional/arch/zxnext/sgni32.asm @@ -36,20 +36,20 @@ _y: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/sgni32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/sgni32.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/sgn.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/sgn.asm" ; Returns SGN (SIGN) for 32, 16 and 8 bits signed integers, Fixed and FLOAT push namespace core diff --git a/tests/functional/arch/zxnext/sgni8.asm b/tests/functional/arch/zxnext/sgni8.asm index 555b8e66f..fb22ca2a9 100644 --- a/tests/functional/arch/zxnext/sgni8.asm +++ b/tests/functional/arch/zxnext/sgni8.asm @@ -32,12 +32,12 @@ _y: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/sgni8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/sgni8.asm" ; Returns SGN (SIGN) for 8 bits signed integer push namespace core diff --git a/tests/functional/arch/zxnext/sgnu16.asm b/tests/functional/arch/zxnext/sgnu16.asm index 5f1e7d3b1..f8918e958 100644 --- a/tests/functional/arch/zxnext/sgnu16.asm +++ b/tests/functional/arch/zxnext/sgnu16.asm @@ -33,12 +33,12 @@ _y: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/sgnu16.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/sgnu16.asm" ; Returns SGN (SIGN) for 16 bits unsigned integer push namespace core diff --git a/tests/functional/arch/zxnext/sgnu32.asm b/tests/functional/arch/zxnext/sgnu32.asm index f7a8c303c..e3c54660f 100644 --- a/tests/functional/arch/zxnext/sgnu32.asm +++ b/tests/functional/arch/zxnext/sgnu32.asm @@ -36,12 +36,12 @@ _y: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/sgnu32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/sgnu32.asm" ; Returns SGN (SIGN) for 32 bits unsigned integer push namespace core diff --git a/tests/functional/arch/zxnext/sgnu8.asm b/tests/functional/arch/zxnext/sgnu8.asm index a2326eb43..2b892a556 100644 --- a/tests/functional/arch/zxnext/sgnu8.asm +++ b/tests/functional/arch/zxnext/sgnu8.asm @@ -32,12 +32,12 @@ _y: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/sgnu8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/sgnu8.asm" ; Returns SGN (SIGN) for 8 bits unsigned integera push namespace core diff --git a/tests/functional/arch/zxnext/stdlib_spectranet.asm b/tests/functional/arch/zxnext/stdlib_spectranet.asm index 51bce0c96..739c0e1e4 100644 --- a/tests/functional/arch/zxnext/stdlib_spectranet.asm +++ b/tests/functional/arch/zxnext/stdlib_spectranet.asm @@ -3383,12 +3383,12 @@ __PRINT_MINUS: ; PRINT the MINUS (-) sign. CALLER must preserve registers pop namespace #line 2 "/zxbasic/src/lib/arch/zxnext/runtime/printi8.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/div8.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/div8.asm" ; -------------------------------- push namespace core diff --git a/tests/functional/arch/zxnext/subf00.asm b/tests/functional/arch/zxnext/subf00.asm index bbd905474..f02386b45 100644 --- a/tests/functional/arch/zxnext/subf00.asm +++ b/tests/functional/arch/zxnext/subf00.asm @@ -47,12 +47,12 @@ _b: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/subf.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/subf.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/stackf.asm" ; ------------------------------------------------------------- diff --git a/tests/functional/arch/zxnext/subf01.asm b/tests/functional/arch/zxnext/subf01.asm index 59c24a6ea..fcbf3310d 100644 --- a/tests/functional/arch/zxnext/subf01.asm +++ b/tests/functional/arch/zxnext/subf01.asm @@ -51,12 +51,12 @@ _b: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/subf.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/subf.asm" #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/stackf.asm" ; ------------------------------------------------------------- diff --git a/tests/functional/arch/zxnext/subf16c.asm b/tests/functional/arch/zxnext/subf16c.asm index aff96fea2..e553a3e4a 100644 --- a/tests/functional/arch/zxnext/subf16c.asm +++ b/tests/functional/arch/zxnext/subf16c.asm @@ -67,12 +67,12 @@ _l: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/sub32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/sub32.asm" ; SUB32 ; Perform TOP of the stack - DEHL diff --git a/tests/functional/arch/zxnext/subi32c.asm b/tests/functional/arch/zxnext/subi32c.asm index 06e1725c2..a2f710ad6 100644 --- a/tests/functional/arch/zxnext/subi32c.asm +++ b/tests/functional/arch/zxnext/subi32c.asm @@ -76,12 +76,12 @@ _l: ret ;; --- end of user code --- #line 1 "/zxbasic/src/lib/arch/zxnext/runtime/arith/sub32.asm" - ' ---------------------------------------------------------------- - ' This file is released under the MIT License - ' - ' Copyleft (k) 2008 -' by Jose Rodriguez-Rosa (a.k.a. Boriel) - ' ---------------------------------------------------------------- + ; ---------------------------------------------------------------- + ; This file is released under the MIT License + ; + ; Copyleft (k) 2008 +; by Jose Rodriguez-Rosa (a.k.a. Boriel) + ; ---------------------------------------------------------------- #line 1 "/zxbasic/src/lib/arch/zx48k/runtime/arith/sub32.asm" ; SUB32 ; Perform TOP of the stack - DEHL