ROSE 0.11.145.147
Intel8086.h
1#ifndef ROSE_BinaryAnalysis_Architecture_Intel8086_H
2#define ROSE_BinaryAnalysis_Architecture_Intel8086_H
3#include <featureTests.h>
4#ifdef ROSE_ENABLE_BINARY_ANALYSIS
5#include <Rose/BinaryAnalysis/Architecture/X86.h>
6
7namespace Rose {
8namespace BinaryAnalysis {
9namespace Architecture {
10
19class Intel8086: public X86 {
20public:
21 using Ptr = Intel8086Ptr;
22
23protected:
24 Intel8086(); // use `instance` instead
25public:
26 ~Intel8086();
27
28public:
30 static Ptr instance();
31
32public:
34 bool matchesHeader(SgAsmGenericHeader*) const override;
35};
36
37} // namespace
38} // namespace
39} // namespace
40
41#endif
42#endif
Architecture-specific information for Intel 8086.
Definition Intel8086.h:19
RegisterDictionary::Ptr registerDictionary() const override
Property: Register dictionary.
bool matchesHeader(SgAsmGenericHeader *) const override
Tests whether this architecture matches a file header.
static Ptr instance()
Allocating constructor.
Common base class for all x86 architectures.
Base class for container file headers.
std::shared_ptr< Intel8086 > Intel8086Ptr
Reference counted pointer for Intel8086.
The ROSE library.
const char * Architecture(int64_t)
Convert Rose::BinaryAnalysis::Disassembler::Mips::Decoder::Architecture enum constant to a string.