2019-05-08 15:09:16 +02:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
// GNU GPL OS/K //
|
|
|
|
// //
|
|
|
|
// Desc: Kernel shell //
|
|
|
|
// //
|
|
|
|
// //
|
|
|
|
// Copyright © 2018-2019 The OS/K Team //
|
|
|
|
// //
|
|
|
|
// This file is part of OS/K. //
|
|
|
|
// //
|
|
|
|
// OS/K is free software: you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or //
|
|
|
|
// any later version. //
|
|
|
|
// //
|
|
|
|
// OS/K is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY//without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with OS/K. If not, see <https://www.gnu.org/licenses/>. //
|
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
|
|
|
#include <extras/buf.h>
|
|
|
|
#include <extras/argv.h>
|
2019-05-08 20:23:52 +02:00
|
|
|
|
|
|
|
#include <kernel/mm.h>
|
|
|
|
#include <kernel/heap.h>
|
2019-05-08 15:09:16 +02:00
|
|
|
#include <kernel/time.h>
|
|
|
|
#include <kernel/speaker.h>
|
|
|
|
#include <kernel/iomisc.h>
|
|
|
|
#include <kernel/pwmgnt.h>
|
|
|
|
#include <kernel/keyboard.h>
|
|
|
|
|
|
|
|
extern void IoScrollDown(void);
|
|
|
|
extern void IoScrollUp(void);
|
|
|
|
|
2019-05-08 17:20:27 +02:00
|
|
|
extern int shargc;
|
|
|
|
extern char *argv0;
|
|
|
|
extern char **shargv;
|
2019-05-08 15:09:16 +02:00
|
|
|
|
|
|
|
#define CMDBUFSIZE 256
|
|
|
|
|
|
|
|
typedef struct Command_t Command_t;
|
|
|
|
|
|
|
|
struct Command_t
|
|
|
|
{
|
|
|
|
const char *name;
|
2019-05-08 17:20:27 +02:00
|
|
|
error_t (*func)(int argc, char **argv, char *cmdline);
|
|
|
|
const char *help;
|
2019-05-08 15:09:16 +02:00
|
|
|
};
|
|
|
|
|
2019-05-08 17:20:27 +02:00
|
|
|
#define DEC_CMD(name) error_t Cmd##name(int, char **, char *)
|
|
|
|
|
|
|
|
DEC_CMD(Beep);
|
|
|
|
DEC_CMD(Quit);
|
|
|
|
DEC_CMD(Help);
|
2019-05-08 20:23:52 +02:00
|
|
|
DEC_CMD(Date);
|
|
|
|
DEC_CMD(MemMap);
|
|
|
|
DEC_CMD(MemUsage);
|
2019-05-08 17:20:27 +02:00
|
|
|
|
|
|
|
extern Command_t cmdtable[];
|
|
|
|
|