1 /*
2  *  Routines to access hardware
3  *
4  *  Copyright (c) 2013 Realtek Semiconductor Corp.
5  *
6  *  This module is a confidential and proprietary property of RealTek and
7  *  possession or use of this module requires written permission of RealTek.
8  */
9 
10 #ifndef _MONITOR_LIB_H_
11 #define _MONITOR_LIB_H_
12 
13 _LONG_CALL_ extern u32 cmd_dump_word(u16 argc, u8  *argv[]);
14 _LONG_CALL_ extern u32 cmd_write_word(u16 argc, u8  *argv[]);
15 _LONG_CALL_ extern u32 cmd_flash(u16 argc,  u8  *argv[]);
16 _LONG_CALL_ extern u32 cmd_efuse(u16 argc, u8  *argv[]);
17 _LONG_CALL_ u32 cmd_rom_table(void** PTable);
18 
19 #define CmdDumpWord	cmd_dump_word
20 #define CmdWriteWord	cmd_write_word
21 #endif
22