]> cloudbase.mooo.com Git - z180-stamp.git/blob - include/cmd_boot.h
Merge branch 'fatfs-integration' into fatcommands
[z180-stamp.git] / include / cmd_boot.h
1 /*
2 * (C) Copyright 2018 Leo C. <erbl259-lmu@yahoo.de>
3 *
4 * SPDX-License-Identifier: GPL-2.0
5 */
6
7 #ifndef CMD_BOOT_H
8 #define CMD_BOOT_H
9
10 #include "command.h"
11
12 command_ret_t do_loadf(cmd_tbl_t *, uint_fast8_t, int, char * const []);
13 command_ret_t do_bootcf(cmd_tbl_t *, uint_fast8_t, int, char * const []);
14 command_ret_t do_busreq_pulse(cmd_tbl_t *, uint_fast8_t, int, char * const []);
15 command_ret_t do_go(cmd_tbl_t *, uint_fast8_t, int, char * const []);
16 command_ret_t do_restart(cmd_tbl_t *, uint_fast8_t, int, char * const []);
17 command_ret_t do_reset(cmd_tbl_t *cmdtp, uint_fast8_t flag, int argc, char * const argv[]);
18 command_ret_t do_console(cmd_tbl_t *, uint_fast8_t, int, char * const []);
19
20
21
22 #endif /* CMD_BOOT_H */