Minor fixes to comments.
[AROS.git] / rom / kernel / kernel_arch.h
blob42d89165a2d5a09bc373207a38aee78e9606285b
1 /*
2 * Machine-specific definitions.
4 * This file needs to be replaced for every machine. Hosted ports
5 * may share the same file in arch/all-$(ARCH)/kernel/kernel_arch.h
7 * This file is just a sample providing necessary minimum.
8 */
10 /* Number of IRQs used in the machine. Needed by kernel_base.h */
11 #define IRQ_COUNT 1
14 * Interrupt controller functions. Actually have the following prototypes:
16 * void ictl_enable_irq(uint8_t num);
17 * void ictl_disable_irq(uint8_t num);
20 #define ictl_enable_irq(irq, base)
21 #define ictl_disable_irq(irq, base)