Skip to content

Commit

Permalink
Implement MORE.COM command
Browse files Browse the repository at this point in the history
  • Loading branch information
FeralChild64 committed Oct 24, 2022
1 parent 25e4a4a commit 6f2de57
Show file tree
Hide file tree
Showing 6 changed files with 599 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/dos/dos_programs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include "program_loadrom.h"
#include "program_ls.h"
#include "program_mem.h"
#include "program_more.h"
#include "program_mount.h"
#include "program_mousectl.h"
#include "program_placeholder.h"
Expand Down Expand Up @@ -75,6 +76,7 @@ void Add_VFiles(const bool add_autoexec)
PROGRAMS_MakeFile("LOADROM.COM", ProgramCreate<LOADROM>);
PROGRAMS_MakeFile("LS.COM", ProgramCreate<LS>);
PROGRAMS_MakeFile("MEM.COM", ProgramCreate<MEM>);
PROGRAMS_MakeFile("MORE.COM", ProgramCreate<MORE>);
PROGRAMS_MakeFile("MOUNT.COM", ProgramCreate<MOUNT>);
PROGRAMS_MakeFile("MOUSECTL.COM", ProgramCreate<MOUSECTL>);
PROGRAMS_MakeFile("RESCAN.COM", ProgramCreate<RESCAN>);
Expand Down
1 change: 1 addition & 0 deletions src/dos/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ libdos_sources = files(
'program_loadrom.cpp',
'program_ls.cpp',
'program_mem.cpp',
'program_more.cpp',
'program_mount.cpp',
'program_mount_common.cpp',
'program_mousectl.cpp',
Expand Down
Loading

0 comments on commit 6f2de57

Please sign in to comment.