-
Notifications
You must be signed in to change notification settings - Fork 588
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cpu/gowin_emcu: Switch to LiteX's UART (Using integrated UART is not …
…really useful for now and make things less flexible, ie no UARTBone/Crossover possibilities).
- Loading branch information
1 parent
6a68370
commit 6c6c238
Showing
4 changed files
with
2 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,4 @@ | ||
#ifndef __IRQ_H | ||
#define __IRQ_H | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
static inline unsigned int irq_getie(void) | ||
{ | ||
return 0; /* FIXME */ | ||
} | ||
|
||
static inline void irq_setie(unsigned int ie) | ||
{ | ||
/* FIXME */ | ||
} | ||
|
||
static inline unsigned int irq_getmask(void) | ||
{ | ||
return 0; /* FIXME */ | ||
} | ||
|
||
static inline void irq_setmask(unsigned int mask) | ||
{ | ||
/* FIXME */ | ||
} | ||
|
||
static inline unsigned int irq_pending(void) | ||
{ | ||
return 0; /* FIXME */ | ||
} | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif /* __IRQ_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters