summaryrefslogtreecommitdiff
path: root/include/cmd_mem.h
blob: 4b370cc7b9985ef8966d37fdc9c3251c68afbfd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * (C) Copyright 2014,2018 Leo C. <erbl259-lmu@yahoo.de>
 *
 * SPDX-License-Identifier:	GPL-2.0
 */

#ifndef CMD_MEM_H
#define CMD_MEM_H

#include "command.h"

command_ret_t do_mem_size(cmd_tbl_t *, uint_fast8_t, int, char * const []);
command_ret_t do_mem_md(cmd_tbl_t *, uint_fast8_t, int, char * const []);
command_ret_t do_mem_mm(cmd_tbl_t *, uint_fast8_t, int, char * const []);
command_ret_t do_mem_nm(cmd_tbl_t *, uint_fast8_t, int, char * const []);
command_ret_t do_mem_mw(cmd_tbl_t *, uint_fast8_t, int, char * const []);
command_ret_t do_mem_cp(cmd_tbl_t *, uint_fast8_t, int, char * const []);
command_ret_t do_mem_cmp(cmd_tbl_t *, uint_fast8_t, int, char * const []);
command_ret_t do_mem_base(cmd_tbl_t *, uint_fast8_t, int, char * const []);
command_ret_t do_mem_loop(cmd_tbl_t *, uint_fast8_t, int, char * const []);
command_ret_t do_mem_loopw(cmd_tbl_t *, uint_fast8_t, int, char * const []);
#ifdef CONFIG_CMD_MEMTEST
command_ret_t do_mem_mtest(cmd_tbl_t *, uint_fast8_t, int, char * const []);
#endif
#ifdef CONFIG_MX_CYCLIC
command_ret_t do_mem_mdc(cmd_tbl_t *, uint_fast8_t, int, char * const []);
#endif /* CONFIG_MX_CYCLIC */

#endif /* CMD_MEM_H */