Import source
[hvf.git] / include / interrupt.h
blobdbe9edb0a8cc16431bdbe91ac241558e56c4647e
1 #ifndef __INTERRUPT_H
2 #define __INTERRUPT_H
4 /*
5 * I/O interruptions specific constants & structures
6 */
7 struct io_int_code {
8 u32 ssid;
9 u32 param;
10 } __attribute__((packed));
12 #define IO_INT_OLD_PSW ((void*) 368)
13 #define IO_INT_NEW_PSW ((void*) 496)
14 #define IO_INT_CODE ((struct io_int_code*) 184)
16 #endif