update to ida 7.6, add builds
This commit is contained in:
31
idasdk76/module/hppa/notify_codes.hpp
Normal file
31
idasdk76/module/hppa/notify_codes.hpp
Normal file
@@ -0,0 +1,31 @@
|
||||
|
||||
/*
|
||||
* Interactive disassembler (IDA).
|
||||
* Copyright (c) 1990-2021 Hex-Rays
|
||||
* ALL RIGHTS RESERVED.
|
||||
*
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include <idp.hpp>
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// The following events are supported by the PPC module in the ph.notify() function
|
||||
namespace hppa_module_t
|
||||
{
|
||||
enum event_codes_t
|
||||
{
|
||||
ev_dummy = processor_t::ev_loader, // was used before
|
||||
ev_is_psw_w, // W-bit in PSW is set
|
||||
};
|
||||
|
||||
inline processor_t::event_t idp_ev(event_codes_t ev)
|
||||
{
|
||||
return processor_t::event_t(ev);
|
||||
}
|
||||
|
||||
inline bool is_psw_w()
|
||||
{
|
||||
return processor_t::notify(idp_ev(ev_is_psw_w)) == 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user