blob: 01f5236cb66167b1fc544505fbcc114cd295c331 (
plain)
1
2
3
4
5
6
7
8
|
#pragma once
#include <stdbool.h>
#include <stdint.h>
extern bool isr_test_interrupt_called; // used in the self-test in idt.c
extern const char _isr_stubs;
void isr_stage3(int interrupt, uint64_t *stackframe);
|