URL
https://opencores.org/ocsvn/riscv_vhdl/riscv_vhdl/trunk
Subversion Repositories riscv_vhdl
[/] [riscv_vhdl/] [trunk/] [debugger/] [src/] [libdbg64g/] [services/] [exec/] [cmd/] [cmd_disas.h] - Rev 4
Go to most recent revision | Compare with Previous | Blame | View Log
/** * @file * @copyright Copyright 2016 GNSS Sensor Ltd. All right reserved. * @author Sergey Khabarov - sergeykhbr@gmail.com * @brief Disassemble data block command. */ #ifndef __DEBUGGER_CMD_DISAS_H__ #define __DEBUGGER_CMD_DISAS_H__ #include "api_core.h" #include "iservice.h" #include "coreservices/itap.h" #include "coreservices/isocinfo.h" #include "coreservices/icommand.h" #include "coreservices/isrccode.h" namespace debugger { class CmdDisas : public ICommand { public: explicit CmdDisas(ITap *tap, ISocInfo *info); /** ICommand */ virtual bool isValid(AttributeType *args); virtual void exec(AttributeType *args, AttributeType *res); private: void format(AttributeType *asmbuf, AttributeType *fmtstr); private: ISourceCode *isrc_; }; } // namespace debugger #endif // __DEBUGGER_CMD_DISAS_H__
Go to most recent revision | Compare with Previous | Blame | View Log