]> cloudbase.mooo.com Git - z180-stamp.git/blame_incremental - include/cmd_mem.h
add missing newlines
[z180-stamp.git] / include / cmd_mem.h
... / ...
CommitLineData
1/*
2 * (C) Copyright 2014,2018 Leo C. <erbl259-lmu@yahoo.de>
3 *
4 * SPDX-License-Identifier: GPL-2.0
5 */
6
7#ifndef CMD_MEM_H
8#define CMD_MEM_H
9
10#include "command.h"
11
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 []);
22#ifdef CONFIG_CMD_MEMTEST
23command_ret_t do_mem_mtest(cmd_tbl_t *, uint_fast8_t, int, char * const []);
24#endif
25#ifdef CONFIG_MX_CYCLIC
26command_ret_t do_mem_mdc(cmd_tbl_t *, uint_fast8_t, int, char * const []);
27#endif /* CONFIG_MX_CYCLIC */
28
29#endif /* CMD_MEM_H */