Subversion Repositories SvarDOS

Rev

Rev 538 | Rev 576 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 538 Rev 571
Line 1... Line 1...
1
/* This file is part of the SvarCOM project and is published under the terms
1
/* This file is part of the SvarCOM project and is published under the terms
2
 * of the MIT license.
2
 * of the MIT license.
3
 *
3
 *
4
 * Copyright (C) 2021 Mateusz Viste
4
 * Copyright (C) 2021-2022 Mateusz Viste
5
 *
5
 *
6
 * Permission is hereby granted, free of charge, to any person obtaining a
6
 * Permission is hereby granted, free of charge, to any person obtaining a
7
 * copy of this software and associated documentation files (the "Software"),
7
 * copy of this software and associated documentation files (the "Software"),
8
 * to deal in the Software without restriction, including without limitation
8
 * to deal in the Software without restriction, including without limitation
9
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
Line 74... Line 74...
74
#include "cmd/if.c"
74
#include "cmd/if.c"
75
#include "cmd/vol.c"     /* must be included before dir.c due to dependency */
75
#include "cmd/vol.c"     /* must be included before dir.c due to dependency */
76
#include "cmd/dir.c"
76
#include "cmd/dir.c"
77
#include "cmd/echo.c"
77
#include "cmd/echo.c"
78
#include "cmd/exit.c"
78
#include "cmd/exit.c"
-
 
79
#include "cmd/ln.c"
79
#include "cmd/mkdir.c"
80
#include "cmd/mkdir.c"
80
#include "cmd/path.c"
81
#include "cmd/path.c"
81
#include "cmd/pause.c"
82
#include "cmd/pause.c"
82
#include "cmd/prompt.c"
83
#include "cmd/prompt.c"
83
#include "cmd/rem.c"
84
#include "cmd/rem.c"
Line 110... Line 111...
110
  {"ECHO",    cmd_echo},
111
  {"ECHO",    cmd_echo},
111
  {"ERASE",   cmd_del},
112
  {"ERASE",   cmd_del},
112
  {"EXIT",    cmd_exit},
113
  {"EXIT",    cmd_exit},
113
  {"IF",      cmd_if},
114
  {"IF",      cmd_if},
114
  {"LH",      cmd_notimpl},
115
  {"LH",      cmd_notimpl},
-
 
116
  {"LN",      cmd_ln},
115
  {"LOADHIGH",cmd_notimpl},
117
  {"LOADHIGH",cmd_notimpl},
116
  {"MD",      cmd_mkdir},
118
  {"MD",      cmd_mkdir},
117
  {"MKDIR",   cmd_mkdir},
119
  {"MKDIR",   cmd_mkdir},
118
  {"PAUSE",   cmd_pause},
120
  {"PAUSE",   cmd_pause},
119
  {"PATH",    cmd_path},
121
  {"PATH",    cmd_path},