cores/cpu/vexriscv_smp: Remove FIXME/CHECKME now that working and remove UART_POLLING flag.
This commit is contained in:
parent
786c929f08
commit
c79e1ef95f
|
@ -169,7 +169,6 @@ class VexRiscvSMP(CPU):
|
|||
def gcc_flags(self):
|
||||
flags = f" -march={VexRiscvSMP.get_arch()} -mabi={VexRiscvSMP.get_abi()}"
|
||||
flags += f" -D__vexriscv_smp__"
|
||||
#flags += f" -DUART_POLLING"
|
||||
return flags
|
||||
|
||||
# Reserved Interrupts.
|
||||
|
|
|
@ -18,7 +18,7 @@ extern "C" {
|
|||
#define PLIC_THRSHLD 0xf0e00000L // Per-pin priority must be >= this to trigger
|
||||
#define PLIC_CLAIM 0xf0e00004L // Claim & completion register address
|
||||
|
||||
#define PLIC_EXT_IRQ_BASE 0 // CHECKME/FIXME.
|
||||
#define PLIC_EXT_IRQ_BASE 0
|
||||
|
||||
static inline unsigned int irq_getie(void)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue