zx_cartridge/Content/Batty/debuild.sh
2026-02-21 10:46:03 +03:00

24 lines
572 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# скрипт извлечения ресурсов из TAP файла с помощью tzxlist
TAP_FILE="batty.tap"
echo "Извлекаем блоки из $TAP_FILE..."
tzxlist -d 2 "$TAP_FILE"
tzxlist -d 3 "$TAP_FILE"
# Переименовываем в понятные имена
mv 00000002.dat screen.scr # картинка
mv 00000003.dat main.bin # код игры
rm *.dsc
rm *.hdr
rm *.zx0
./../tools/zx0/build/zx0 screen.scr
./../tools/zx0/build/zx0 main.bin
# main.bin -> 0x6800 (26624) точка входа в main
ls -la