init mod04 ex02

This commit is contained in:
hugo LAMY
2025-03-12 10:55:55 +01:00
parent fc77fb1749
commit 08dab7e608
9 changed files with 254 additions and 1 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