mirror of
https://review.haiku-os.org/haiku
synced 2025-01-30 18:24:53 +01:00
14 lines
324 B
C
14 lines
324 B
C
|
/*
|
||
|
* Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _KERNEL_ARCH_x86_INT_H
|
||
|
#define _KERNEL_ARCH_x86_INT_H
|
||
|
|
||
|
|
||
|
#define ARCH_INTERRUPT_BASE 0x20
|
||
|
#define NUM_IO_VECTORS (256 - ARCH_INTERRUPT_BASE)
|
||
|
|
||
|
|
||
|
#endif /* _KERNEL_ARCH_x86_INT_H */
|