mirror of
https://github.com/cc65/cc65.git
synced 2025-03-01 11:29:27 +00:00
Made the program-chaining exec() handle the X16 emulator's file-system.
This commit is contained in:
parent
3fa253d31f
commit
f067c4530f
@ -1,7 +1,7 @@
|
||||
/*
|
||||
** Program-chaining function for Commodore platforms.
|
||||
**
|
||||
** 2019-11-08, Greg King
|
||||
** 2019-12-25, Greg King
|
||||
**
|
||||
** This function exploits the program-chaining feature in Commander X16 BASIC's ROM.
|
||||
**
|
||||
@ -82,12 +82,15 @@ int __fastcall__ exec (const char* progname, const char* cmdline)
|
||||
}
|
||||
utoa (dv, basic.unit, 10);
|
||||
|
||||
/* The emulator supports only loading and saving on its file-system. */
|
||||
if (dv != 1) {
|
||||
/* Don't try to run a program that doesn't exist. */
|
||||
fd = open (progname, O_RDONLY);
|
||||
if (fd < 0) {
|
||||
return _mappederrno (4); /* file not found */
|
||||
}
|
||||
close (fd);
|
||||
}
|
||||
|
||||
n = 0;
|
||||
do {
|
||||
|
Loading…
x
Reference in New Issue
Block a user