Organize into arch, board, and ec modules
This commit is contained in:
6
src/arch/8051/include/arch/delay.h
Normal file
6
src/arch/8051/include/arch/delay.h
Normal file
@@ -0,0 +1,6 @@
|
||||
#ifndef _ARCH_DELAY_H
|
||||
#define _ARCH_DELAY_H
|
||||
|
||||
void delay_ms(int ms);
|
||||
|
||||
#endif // _ARCH_DELAY_H
|
6
src/arch/8051/include/arch/reset.h
Normal file
6
src/arch/8051/include/arch/reset.h
Normal file
@@ -0,0 +1,6 @@
|
||||
#ifndef _ARCH_RESET_H
|
||||
#define _ARCH_RESET_H
|
||||
|
||||
void reset(void);
|
||||
|
||||
#endif // _ARCH_RESET_H
|
8
src/arch/8051/include/arch/timer.h
Normal file
8
src/arch/8051/include/arch/timer.h
Normal 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
|
Reference in New Issue
Block a user