URL
https://opencores.org/ocsvn/riscv_vhdl/riscv_vhdl/trunk
Subversion Repositories riscv_vhdl
[/] [riscv_vhdl/] [trunk/] [debugger/] [src/] [cpu_fnc_plugin/] [instructions.cpp] - Rev 3
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 Instruction types parser. */ #include "api_utils.h" #include "riscv-isa.h" #include "instructions.h" namespace debugger { unsigned addSupportedInstruction(IsaProcessor *instr, AttributeType *out) { AttributeType tmp(instr); out[instr->hash()].add_to_list(&tmp); return 0; } } // namespace debugger
Go to most recent revision | Compare with Previous | Blame | View Log