Skip to content

Commit

Permalink
cpu/gowin_emcu: Remove interrupt signal since not yet functional/used.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Jan 4, 2024
1 parent 386854c commit 6a68370
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions litex/soc/cores/cpu/gowin_emcu/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ def gcc_flags(self):
def __init__(self, platform, variant="standard"):
self.platform = platform
self.reset = Signal()
self.interrupt = Signal(5)
self.pbus = wishbone.Interface(data_width=32, adr_width=30, addressing="word")
self.periph_buses = [self.pbus]
self.memory_buses = []
Expand All @@ -79,7 +78,7 @@ def __init__(self, platform, variant="standard"):
o_IOEXPOUTPUTENO = Signal(), # TODO: GPIO Output Enable (16-bit).

# Interrupts.
i_GPINT = self.interrupt,
i_GPINT = Open(),
o_INTMONITOR = Signal(),

# Flash.
Expand Down

0 comments on commit 6a68370

Please sign in to comment.