Organize into arch, board, and ec modules

This commit is contained in:
Jeremy Soller
2019-09-29 20:13:03 -06:00
parent 9d056547e6
commit ded5181926
47 changed files with 518 additions and 486 deletions

View File

@@ -0,0 +1,6 @@
#ifndef _ARCH_DELAY_H
#define _ARCH_DELAY_H
void delay_ms(int ms);
#endif // _ARCH_DELAY_H

View File

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

View File

@@ -0,0 +1,8 @@
#ifndef _ARCH_TIMER_H
#define _ARCH_TIMER_H
void timer_mode_1(int value);
void timer_wait(void);
void timer_stop(void);
#endif // _ARCH_TIMER_H