Added macOS Ventura ARM binaries

This commit is contained in:
kounch 2023-08-27 19:12:08 +02:00
parent a289c3b2a8
commit 646dc4d95b
27 changed files with 149 additions and 0 deletions

View File

@ -28,6 +28,7 @@ Directory | Description
`opt` | Optionally installed bundles (like SDK).
`src` | The source code of local and downloadable tools. See Makefiles for details.
`windows-x86` | Compiled binaries of tools and libraries for Windows x86 (32 bit) platform.
`macos-arm64` | Compiled binaries of tools and libraries for macOS Ventura (ARM) platform.
## 1.1. Copyright and licensing information for files

BIN
sdk/macos-arm64/bin/AddItem Executable file

Binary file not shown.

View File

@ -0,0 +1,9 @@
SPDX-FileName: AddItem
SPDX-FileType: BINARY
SPDX-FileCopyrightText: Copyright (C) 2019, 2021 Antonio Villena
SPDX-License-Identifier: GPL-3.0-only
SPDX-FileComment: AddItem version 0.02 - simulates Machine and ROM addition to the ZX-Uno flash image.

BIN
sdk/macos-arm64/bin/Bit2Bin Executable file

Binary file not shown.

View File

@ -0,0 +1,9 @@
SPDX-FileName: Bit2Bin
SPDX-FileType: BINARY
SPDX-FileCopyrightText: Copyright (C) 2019-2021 Antonio Villena
SPDX-License-Identifier: GPL-3.0-only
SPDX-FileComment: Bit2Bin version 0.05 (2020-02-19) - strip .bit header and align binary to 16K.

BIN
sdk/macos-arm64/bin/GenRom Executable file

Binary file not shown.

View File

@ -0,0 +1,9 @@
SPDX-FileName: GenRom
SPDX-FileType: BINARY
SPDX-FileCopyrightText: Copyright (C) 2016, 2021 Antonio Villena
SPDX-License-Identifier: GPL-3.0-only
SPDX-FileComment: GenRom version 0.06 (2016-07-04) - generates a TAP for loading a ROM in the ZX-Uno.

BIN
sdk/macos-arm64/bin/GenTape Executable file

Binary file not shown.

View File

@ -0,0 +1,9 @@
SPDX-FileName: GenTape
SPDX-FileType: BINARY
SPDX-FileCopyrightText: Copyright (C) 2013-2015, 2021 Antonio Villena
SPDX-License-Identifier: GPL-3.0-only
SPDX-FileComment: GenTape version 1.0 (1 Jun 2015) - a Tape File Generator.

BIN
sdk/macos-arm64/bin/Png2Rcs Executable file

Binary file not shown.

View File

@ -0,0 +1,9 @@
SPDX-FileName: Png2Rcs
SPDX-FileType: BINARY
SPDX-FileCopyrightText: Copyright (C) 2014, 2015, 2021 Antonio Villena
SPDX-License-Identifier: GPL-3.0-only
SPDX-FileComment: Png2Rcs version 1.20 (31 May 2015) - Image to ZX Spectrum RCS screen.

BIN
sdk/macos-arm64/bin/bin2hex Executable file

Binary file not shown.

View File

@ -0,0 +1,7 @@
SPDX-FileName: bin2hex
SPDX-FileType: BINARY
SPDX-FileCopyrightText: Copyright (C) 2016, 2021 Antonio Villena
SPDX-License-Identifier: GPL-3.0-only

BIN
sdk/macos-arm64/bin/dzx7b Executable file

Binary file not shown.

View File

@ -0,0 +1,9 @@
SPDX-FileName: dzx7b
SPDX-FileType: BINARY
SPDX-FileCopyrightText: Copyright (c) 2015 Einar Saukas. All rights reserved.
SPDX-License-Identifier: BSD-3-Clause
SPDX-FileComment: dzx7b version 1.0 (2015) - LZ77/LZSS backwards decompressor.

BIN
sdk/macos-arm64/bin/fcut Executable file

Binary file not shown.

View File

@ -0,0 +1,9 @@
SPDX-FileName: fcut
SPDX-FileType: BINARY
SPDX-FileCopyrightText: Copyright (C) 2015, 2021 Antonio Villena
SPDX-License-Identifier: GPL-3.0-only
SPDX-FileComment: fcut version 1.00 (20 Jun 2015) - a file hexadecimal cutter.

BIN
sdk/macos-arm64/bin/fpad Executable file

Binary file not shown.

View File

@ -0,0 +1,9 @@
SPDX-FileName: fpad
SPDX-FileType: BINARY
SPDX-FileCopyrightText: Copyright (C) 2016, 2021 Antonio Villena
SPDX-License-Identifier: GPL-3.0-only
SPDX-FileComment: fpad version 1.00 (24 Apr 2016) - generate a file with padded values.

BIN
sdk/macos-arm64/bin/fpoke Executable file

Binary file not shown.

View File

@ -0,0 +1,9 @@
SPDX-FileName: fpoke
SPDX-FileType: BINARY
SPDX-FileCopyrightText: Copyright (C) 2016, 2021 Antonio Villena
SPDX-License-Identifier: GPL-3.0-only
SPDX-FileComment: fpoke version 1.0 (11 May 2016) - tool that overwrites bytes in a file.

BIN
sdk/macos-arm64/bin/rcs Executable file

Binary file not shown.

View File

@ -0,0 +1,9 @@
SPDX-FileName: rcs
SPDX-FileType: BINARY
SPDX-FileCopyrightText: Copyright (C) 2013, 2021 Antonio Villena
SPDX-License-Identifier: GPL-3.0-only
SPDX-FileComment: rcs version 1.03 (18 Jan 2013) - SCR filter to RCS (and inverse).

BIN
sdk/macos-arm64/bin/sjasmplus Executable file

Binary file not shown.

37
sdk/macos-arm64/bin/split.sh Executable file
View File

@ -0,0 +1,37 @@
#!/bin/sh
mypath=`dirname "$0"`
fpadbin="${mypath}/fpad"
"${fpadbin}" >/dev/null 2>&1
retval=$?
if [ $retval != 0 ]; then
echo $("ERROR: fpad Not found")
exit $retVal
fi
fcutbin="${mypath}/fcut"
"${fcutbin}" >/dev/null 2>&1
retval=$?
if [ $retval != 0 ]; then
echo $("ERROR: fcut Not found")
exit $retVal
fi
"${fpadbin}" 120000 0 padzero.int >/dev/null
cat "${1}" padzero.int > intfile.int
size="$(wc -c <"${1}")"
echo $size
"${fcutbin}" intfile.int 0 120000 "${2}.00.ZX3"
if [ "${size}" -gt "1179648" ]; then "${fcutbin}" intfile.int 120000 120000 "${2}.01.ZX3"; fi
if [ "${size}" -gt "2359296" ]; then "${fcutbin}" intfile.int 240000 120000 "${2}.02.ZX3"; fi
if [ "${size}" -gt "3538944" ]; then "${fcutbin}" intfile.int 360000 120000 "${2}.03.ZX3"; fi
if [ "${size}" -gt "4718592" ]; then "${fcutbin}" intfile.int 480000 120000 "${2}.04.ZX3"; fi
rm -f padzero.int
rm -f intfile.int
exit 0

BIN
sdk/macos-arm64/bin/zx7b Executable file

Binary file not shown.

View File

@ -0,0 +1,14 @@
SPDX-FileName: zx7b
SPDX-FileType: BINARY
SPDX-FileCopyrightText: Copyright (c) 2013, 2021 Antonio Villena. All rights reserved.
SPDX-FileNotice: Based on ZX7 <http://www.worldofspectrum.org/infoseekid.cgi?id=0027996>
SPDX-FileNotice: ZX7 is Copyright (c) 2012 Einar Saukas. All rights reserved.
SPDX-License-Identifier: BSD-3-Clause
SPDX-LicenseComments: License's text equals to one from https://directory.fsf.org/wiki/License:BSD-3-Clause
SPDX-FileComment: zx7b version 1.01 (28 Dec 2013) - backwards compressor.