(console) Use 0x1 for no-args

This commit is contained in:
Devine Lu Linvega 2023-04-17 11:19:37 -07:00
parent 98282cb1a6
commit d8bee29626
3 changed files with 3 additions and 5 deletions

View File

@ -14,7 +14,7 @@
( print hello )
;hello-txt pstr
( when arguments are queued )
.Console/type DEI #04 EQU ?&no-queue
.Console/type DEI #01 EQU ?&no-queue
;queue-txt pstr
&no-queue

View File

@ -52,8 +52,7 @@ main(int argc, char **argv)
return system_error("Boot", "Failed");
if(!system_load(&u, argv[i++]))
return system_error("Load", "Failed");
if(i == argc)
u.dev[0x17] = CONSOLE_END;
u.dev[0x17] = i == argc;
if(!uxn_eval(&u, PAGE_PROGRAM))
return u.dev[0x0f] & 0x7f;
for(; i < argc; i++) {

View File

@ -495,8 +495,7 @@ main(int argc, char **argv)
/* load rom */
if(i == argc)
return system_error("usage", "uxnemu [-2x][-3x] file.rom");
if(i == argc - 1)
u.dev[0x17] = CONSOLE_END;
u.dev[0x17] = i == argc - 1;
if(!start(&u, argv[i]))
return system_error("Start", "Failed");
rom_path = argv[i++];