]> cloudbase.mooo.com Git - z180-stamp.git/blame - include/cmd_mem.h
Remove extern declarations from command_tbl.c, create .h files for that.
[z180-stamp.git] / include / cmd_mem.h
CommitLineData
35edb766
L
1/*
2 * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
3 *
fcf1d5b3 4 * SPDX-License-Identifier: GPL-2.0
35edb766
L
5 */
6
72f58822
L
7#ifndef CMD_MEM_H
8#define CMD_MEM_H
9
72f58822 10#include "command.h"
72f58822
L
11
12
fcf1d5b3
L
13extern command_ret_t do_mem_md(cmd_tbl_t *, uint_fast8_t, int, char * const []);
14extern command_ret_t do_mem_mm(cmd_tbl_t *, uint_fast8_t, int, char * const []);
15extern command_ret_t do_mem_nm(cmd_tbl_t *, uint_fast8_t, int, char * const []);
16extern command_ret_t do_mem_mw(cmd_tbl_t *, uint_fast8_t, int, char * const []);
17extern command_ret_t do_mem_cp(cmd_tbl_t *, uint_fast8_t, int, char * const []);
18extern command_ret_t do_mem_cmp(cmd_tbl_t *, uint_fast8_t, int, char * const []);
19extern command_ret_t do_mem_base(cmd_tbl_t *, uint_fast8_t, int, char * const []);
20extern command_ret_t do_mem_loop(cmd_tbl_t *, uint_fast8_t, int, char * const []);
21extern command_ret_t do_mem_loopw(cmd_tbl_t *, uint_fast8_t, int, char * const []);
72f58822 22#ifdef CONFIG_CMD_MEMTEST
fcf1d5b3 23extern command_ret_t do_mem_mtest(cmd_tbl_t *, uint_fast8_t, int, char * const []);
72f58822
L
24#endif
25#ifdef CONFIG_MX_CYCLIC
fcf1d5b3 26extern command_ret_t do_mem_mdc(cmd_tbl_t *, uint_fast8_t, int, char * const []);
72f58822
L
27#endif /* CONFIG_MX_CYCLIC */
28
29#endif /* CMD_MEM_H */