From 5c34c5659f8f5008b1e83ac32a7787f4439ed8dd Mon Sep 17 00:00:00 2001 From: boykovra Date: Thu, 29 Aug 2024 10:03:56 +0300 Subject: [PATCH] turn off unused wnd --- sources/DSS/.vscode/launch.json | 2 +- sources/DSS/cmdtest.asm | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/sources/DSS/.vscode/launch.json b/sources/DSS/.vscode/launch.json index a8f9bf3..e3b8b0a 100644 --- a/sources/DSS/.vscode/launch.json +++ b/sources/DSS/.vscode/launch.json @@ -175,7 +175,7 @@ "name": "WTFTP Internal Simulator", "remoteType": "zsim", "zsim": { - "visualMemory": true, + "visualMemory": false, "memoryModel": "CUSTOM", "customMemory": { "slots": [ diff --git a/sources/DSS/cmdtest.asm b/sources/DSS/cmdtest.asm index c2bfa3d..0dbfe03 100644 --- a/sources/DSS/cmdtest.asm +++ b/sources/DSS/cmdtest.asm @@ -1,7 +1,7 @@ DSS EQU 0x10 DSS_PCHARS EQU 0x5C DSS_EXIT EQU 0x41 -EXE_VERSION EQU 0x00 +EXE_VERSION EQU 0x01 ; Print data ASCIIZ string to screen and CR+LF @@ -41,6 +41,7 @@ START PRINTLN MSG_CMDLINE PUSH IX POP HL + INC HL LD C,DSS_PCHARS RST DSS @@ -58,7 +59,7 @@ MSG_CMDLINE DB "\r\nCommandline:"Z MSG_CURPATH - DB "\r\nCurrentPath:"Z + DB "\r\nExePath:"Z MSG_LINE_END DB "\r\n"Z