mirror of https://github.com/FDOS/kernel.git
change comments to old C style (oops, TC fix)
git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/branches/UNSTABLE@1073 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
parent
89c51f2223
commit
e90387e6dd
10
sys/sys.c
10
sys/sys.c
|
@ -272,11 +272,11 @@ int FDKrnConfigMain(int argc, char **argv);
|
|||
boot sector (optionally included).
|
||||
*/
|
||||
typedef struct DOSBootFiles {
|
||||
const char * kernel; // filename boot sector loads and chains to
|
||||
const char * dos; // optional secondary file for OS
|
||||
WORD loadseg; // segment kernel file expects to start at
|
||||
BOOL stdbs; // use FD boot sector (T) or oem compat one (F)
|
||||
LONG minsize; // smallest dos file can be and be valid, 0=existance optional
|
||||
const char * kernel; /* filename boot sector loads and chains to */
|
||||
const char * dos; /* optional secondary file for OS */
|
||||
WORD loadseg; /* segment kernel file expects to start at */
|
||||
BOOL stdbs; /* use FD boot sector (T) or oem compat one (F) */
|
||||
LONG minsize; /* smallest dos file can be and be valid, 0=existance optional */
|
||||
} DOSBootFiles;
|
||||
DOSBootFiles bootFiles[] = {
|
||||
/* Note: This order is the order OEM:AUTO uses to determine DOS flavor. */
|
||||
|
|
Loading…
Reference in New Issue