turn off unused wnd

This commit is contained in:
boykovra 2024-08-29 10:03:56 +03:00
parent 0048fbb929
commit 5c34c5659f
2 changed files with 4 additions and 3 deletions

View File

@ -175,7 +175,7 @@
"name": "WTFTP Internal Simulator",
"remoteType": "zsim",
"zsim": {
"visualMemory": true,
"visualMemory": false,
"memoryModel": "CUSTOM",
"customMemory": {
"slots": [

View File

@ -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