]> cloudbase.mooo.com Git - z180-stamp.git/blame - include/cmd_mem.h
Global help
[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
L
10#include "command.h"
11#include "cmd_mem.h"
12
13
fcf1d5b3
L
14extern command_ret_t do_mem_md(cmd_tbl_t *, uint_fast8_t, int, char * const []);
15extern command_ret_t do_mem_mm(cmd_tbl_t *, uint_fast8_t, int, char * const []);
16extern command_ret_t do_mem_nm(cmd_tbl_t *, uint_fast8_t, int, char * const []);
17extern command_ret_t do_mem_mw(cmd_tbl_t *, uint_fast8_t, int, char * const []);
18extern command_ret_t do_mem_cp(cmd_tbl_t *, uint_fast8_t, int, char * const []);
19extern command_ret_t do_mem_cmp(cmd_tbl_t *, uint_fast8_t, int, char * const []);
20extern command_ret_t do_mem_base(cmd_tbl_t *, uint_fast8_t, int, char * const []);
21extern command_ret_t do_mem_loop(cmd_tbl_t *, uint_fast8_t, int, char * const []);
22extern command_ret_t do_mem_loopw(cmd_tbl_t *, uint_fast8_t, int, char * const []);
72f58822 23#ifdef CONFIG_CMD_MEMTEST
fcf1d5b3 24extern command_ret_t do_mem_mtest(cmd_tbl_t *, uint_fast8_t, int, char * const []);
72f58822
L
25#endif
26#ifdef CONFIG_MX_CYCLIC
fcf1d5b3 27extern command_ret_t do_mem_mdc(cmd_tbl_t *, uint_fast8_t, int, char * const []);
72f58822
L
28#endif /* CONFIG_MX_CYCLIC */
29
30#endif /* CMD_MEM_H */