diff options
Diffstat (limited to 'bootblocks/monitor.h')
-rw-r--r-- | bootblocks/monitor.h | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/bootblocks/monitor.h b/bootblocks/monitor.h index 9d66f95..4e499f0 100644 --- a/bootblocks/monitor.h +++ b/bootblocks/monitor.h @@ -19,9 +19,6 @@ extern union REGS __argr; #ifdef TARFLOPPY #define SINGLEFS -#define NOMONITOR -#define NOCOMMAND -#define MINI_BUF #define open_file tar_open_file #define rewind_file tar_rewind_file @@ -32,9 +29,6 @@ extern union REGS __argr; #ifdef MINFLOPPY #define SINGLEFS -#define NOMONITOR -#define NOCOMMAND -#define MINI_BUF #define open_file min_open_file #define rewind_file min_rewind_file @@ -45,10 +39,6 @@ extern union REGS __argr; #ifdef DOSFLOPPY #define SINGLEFS -#define NOMONITOR -#define NOCOMMAND -#define MINI_BUF -#define MAXTRK 24 #define open_file dos_open_file #define rewind_file dos_rewind_file @@ -57,6 +47,11 @@ extern union REGS __argr; #define read_block dos_read_block #endif +#ifdef SINGLEFS +/* #define NOCOMMAND */ +#define NOMONITOR +#endif + #ifdef __STANDALONE__ #undef putchar #define putchar putch |