wip mod04 ex01

This commit is contained in:
hugo LAMY
2025-03-10 21:17:39 +01:00
parent e16552b4bc
commit 2aaaac6c57
9 changed files with 59 additions and 43 deletions

View File

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