]> cloudbase.mooo.com Git - z180-stamp.git/blame - include/cmd_mem.h
rewrite of cmd_cpu/do_cpu_freq
[z180-stamp.git] / include / cmd_mem.h
CommitLineData
35edb766 1/*
1e5609bf 2 * (C) Copyright 2014,2018 Leo C. <erbl259-lmu@yahoo.de>
35edb766 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 11
1e5609bf
L
12command_ret_t do_mem_size(cmd_tbl_t *, uint_fast8_t, int, char * const []);
13command_ret_t do_mem_md(cmd_tbl_t *, uint_fast8_t, int, char * const []);
14command_ret_t do_mem_mm(cmd_tbl_t *, uint_fast8_t, int, char * const []);
15command_ret_t do_mem_nm(cmd_tbl_t *, uint_fast8_t, int, char * const []);
16command_ret_t do_mem_mw(cmd_tbl_t *, uint_fast8_t, int, char * const []);
17command_ret_t do_mem_cp(cmd_tbl_t *, uint_fast8_t, int, char * const []);
18command_ret_t do_mem_cmp(cmd_tbl_t *, uint_fast8_t, int, char * const []);
19command_ret_t do_mem_base(cmd_tbl_t *, uint_fast8_t, int, char * const []);
20command_ret_t do_mem_loop(cmd_tbl_t *, uint_fast8_t, int, char * const []);
21command_ret_t do_mem_loopw(cmd_tbl_t *, uint_fast8_t, int, char * const []);
72f58822 22#ifdef CONFIG_CMD_MEMTEST
1e5609bf 23command_ret_t do_mem_mtest(cmd_tbl_t *, uint_fast8_t, int, char * const []);
72f58822
L
24#endif
25#ifdef CONFIG_MX_CYCLIC
1e5609bf 26command_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 */