Create arch_init function, enable interrupts

This commit is contained in:
Jeremy Soller
2020-02-03 15:27:27 -07:00
parent ce22dd5208
commit c1fbbce805
7 changed files with 35 additions and 65 deletions

View File

@@ -0,0 +1,6 @@
#ifndef _ARCH_ARCH_H
#define _ARCH_ARCH_H
void arch_init(void);
#endif // _ARCH_ARCH_H

View File

@@ -1,6 +1,8 @@
#ifndef _ARCH_TIME_H
#define _ARCH_TIME_H
#include <stdint.h>
void time_init(void);
uint32_t time_get(void);