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", "name": "WTFTP Internal Simulator",
"remoteType": "zsim", "remoteType": "zsim",
"zsim": { "zsim": {
"visualMemory": true, "visualMemory": false,
"memoryModel": "CUSTOM", "memoryModel": "CUSTOM",
"customMemory": { "customMemory": {
"slots": [ "slots": [

View File

@ -1,7 +1,7 @@
DSS EQU 0x10 DSS EQU 0x10
DSS_PCHARS EQU 0x5C DSS_PCHARS EQU 0x5C
DSS_EXIT EQU 0x41 DSS_EXIT EQU 0x41
EXE_VERSION EQU 0x00 EXE_VERSION EQU 0x01
; Print data ASCIIZ string to screen and CR+LF ; Print data ASCIIZ string to screen and CR+LF
@ -41,6 +41,7 @@ START
PRINTLN MSG_CMDLINE PRINTLN MSG_CMDLINE
PUSH IX PUSH IX
POP HL POP HL
INC HL
LD C,DSS_PCHARS LD C,DSS_PCHARS
RST DSS RST DSS
@ -58,7 +59,7 @@ MSG_CMDLINE
DB "\r\nCommandline:"Z DB "\r\nCommandline:"Z
MSG_CURPATH MSG_CURPATH
DB "\r\nCurrentPath:"Z DB "\r\nExePath:"Z
MSG_LINE_END MSG_LINE_END
DB "\r\n"Z DB "\r\n"Z