X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/fcf1d5b30bd3b341fb7596aef395f347c6dc97b4..9403f93922ea096bfdea4a81f1c34c5c044fcbbb:/include/cmd_mem.h diff --git a/include/cmd_mem.h b/include/cmd_mem.h index 625ab8d..4b370cc 100644 --- a/include/cmd_mem.h +++ b/include/cmd_mem.h @@ -1,5 +1,5 @@ /* - * (C) Copyright 2014 Leo C. + * (C) Copyright 2014,2018 Leo C. * * SPDX-License-Identifier: GPL-2.0 */ @@ -8,23 +8,22 @@ #define CMD_MEM_H #include "command.h" -#include "cmd_mem.h" - -extern command_ret_t do_mem_md(cmd_tbl_t *, uint_fast8_t, int, char * const []); -extern command_ret_t do_mem_mm(cmd_tbl_t *, uint_fast8_t, int, char * const []); -extern command_ret_t do_mem_nm(cmd_tbl_t *, uint_fast8_t, int, char * const []); -extern command_ret_t do_mem_mw(cmd_tbl_t *, uint_fast8_t, int, char * const []); -extern command_ret_t do_mem_cp(cmd_tbl_t *, uint_fast8_t, int, char * const []); -extern command_ret_t do_mem_cmp(cmd_tbl_t *, uint_fast8_t, int, char * const []); -extern command_ret_t do_mem_base(cmd_tbl_t *, uint_fast8_t, int, char * const []); -extern command_ret_t do_mem_loop(cmd_tbl_t *, uint_fast8_t, int, char * const []); -extern command_ret_t do_mem_loopw(cmd_tbl_t *, uint_fast8_t, int, char * const []); +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 -extern command_ret_t do_mem_mtest(cmd_tbl_t *, uint_fast8_t, int, char * const []); +command_ret_t do_mem_mtest(cmd_tbl_t *, uint_fast8_t, int, char * const []); #endif #ifdef CONFIG_MX_CYCLIC -extern command_ret_t do_mem_mdc(cmd_tbl_t *, uint_fast8_t, int, char * const []); +command_ret_t do_mem_mdc(cmd_tbl_t *, uint_fast8_t, int, char * const []); #endif /* CONFIG_MX_CYCLIC */ #endif /* CMD_MEM_H */