summaryrefslogtreecommitdiffstats
path: root/setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.c b/setup.c
index 568caaf..89a7762 100644
--- a/setup.c
+++ b/setup.c
@@ -20,8 +20,9 @@
#include <reg.h>
#include <stddef.h>
-#include "usb/usb.h"
+#include "pit.h"
#include "uart.h"
+#include "usb/usb.h"
extern unsigned char _ldata[], _sdata[], _edata[];
extern unsigned char _sbss[], _ebss[];
@@ -108,6 +109,7 @@ void setup(void)
uart_setup();
usb_setup();
+ pit_setup();
/* Enable interrupts for setup */
STI();