add rush 00

This commit is contained in:
hugogogo
2025-03-15 16:39:29 +01:00
parent 1d5e8d4ee7
commit 70db631c93
15 changed files with 598 additions and 1 deletions

8
rush_00/interrupt.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef INTERRUPT_H
#define INTERRUPT_H
// 7.3.1 : SREG AVR Status Register
#define ENABLE_GLOBAL_INTERRUPT (1<<7)
#define DISABLE_GLOBAL_INTERRUPT (0<<7)
#endif // INTERRUPT_H