From 60591cd4e230efd288b659af4bb4a3d8cb62e670 Mon Sep 17 00:00:00 2001 From: "Oleg N. Cher" Date: Sun, 24 Feb 2013 23:19:21 +0200 Subject: [PATCH] Update 'ZXDev/Obj/HelloWorld.bat' & 'ZXDev/Obj/TinyHello.bat' to generate TAPs (with help of 'ZXDev/Bin/bin2data.exe'). --- ZXDev/Obj/HelloWorld.bat | 14 ++++++-------- ZXDev/Obj/TinyHello.bat | 14 ++++++-------- 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/ZXDev/Obj/HelloWorld.bat b/ZXDev/Obj/HelloWorld.bat index 2e0ec63fe..81d8ae15e 100644 --- a/ZXDev/Obj/HelloWorld.bat +++ b/ZXDev/Obj/HelloWorld.bat @@ -15,15 +15,13 @@ @REM ================================== %bin%\Hex2bin HelloWorld.ihx -@REM Link the target to TR-DOS format -@REM ================================ -@REM WARNING! bin2trd is a MS-DOS program, must use a short filename -@DEL /Q HELLOW~1.TRD -%bin%\bin2trd.exe HelloW~1.trl -@MOVE /Y HELLOW~1.TRD ../HelloWorld.trd +@REM Link the target to TAP format +@REM ============================= +@DEL /Q HelloWorld.tap +%bin%\bin2data.exe -rem -org 26000 HelloWorld.bin ..\HelloWorld.tap HelloWorld @REM ====================================================================== -@ECHO Now you can run the image "HelloWorld.trd" in your favourite emulator +@ECHO Now you can run the image "HelloWorld.tap" in your favourite emulator @REM ====================================================================== -START ..\HelloWorld.trd \ No newline at end of file +START ..\HelloWorld.tap \ No newline at end of file diff --git a/ZXDev/Obj/TinyHello.bat b/ZXDev/Obj/TinyHello.bat index d2a2c5ba6..2ceac4c58 100644 --- a/ZXDev/Obj/TinyHello.bat +++ b/ZXDev/Obj/TinyHello.bat @@ -15,15 +15,13 @@ @REM ================================== %bin%\Hex2bin TinyHello.ihx -@REM Link the target to TR-DOS format -@REM ================================ -@REM WARNING! bin2trd is a MS-DOS program, must use a short filename -@DEL /Q TINYHE~1.TRD -%bin%\bin2trd.exe TinyHe~1.trl -@MOVE /Y TINYHE~1.TRD ..\TinyHello.trd +@REM Link the target to TAP format +@REM ============================= +@DEL /Q TinyHello.tap +%bin%\bin2data.exe -rem -org 26000 TinyHello.bin ..\TinyHello.tap TinyHello @REM ====================================================================== -@ECHO Now you can run the image "TinyHello.trd" in your favourite emulator. +@ECHO Now you can run the image "TinyHello.tap" in your favourite emulator. @REM ====================================================================== -START ..\TinyHello.trd \ No newline at end of file +START ..\TinyHello.tap \ No newline at end of file