diff --git a/device.c b/device.c index 63c33fe..e0672ce 100644 --- a/device.c +++ b/device.c @@ -14,15 +14,15 @@ extern struct dev_entry clock_dev; #endif struct dev_entry *iodevs[] = { -#ifdef DEV_DEBUG - &debug_dev, -#endif #ifdef DEV_LEM1802 &lem1802_dev, &keyboard_dev, #endif #ifdef DEV_CLOCK &clock_dev, +#endif +#ifdef DEV_DEBUG + &debug_dev, #endif NULL };