You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
239 B
10 lines
239 B
4 years ago
|
#pragma once
|
||
|
#include "hv_types.hpp"
|
||
|
#include "segment_intrin.h"
|
||
|
#pragma section(".idt", read, write)
|
||
|
|
||
|
namespace idt
|
||
|
{
|
||
|
__declspec(allocate(".idt")) inline hv::idt_entry_t table[256];
|
||
|
auto create_entry(void* address) -> hv::idt_entry_t;
|
||
|
}
|