URL
https://opencores.org/ocsvn/neorv32/neorv32/trunk
Subversion Repositories neorv32
Compare Revisions
- This comparison shows the changes necessary to convert path
/neorv32/trunk/sim/simple
- from Rev 64 to Rev 65
- ↔ Reverse comparison
Rev 64 → Rev 65
/neorv32_tb.simple.vhd
222,7 → 222,11
IO_GPIO_EN => true, -- implement general purpose input/output port unit (GPIO)? |
IO_MTIME_EN => true, -- implement machine system timer (MTIME)? |
IO_UART0_EN => true, -- implement primary universal asynchronous receiver/transmitter (UART0)? |
IO_UART0_RX_FIFO => 32, -- RX fifo depth, has to be a power of two, min 1 |
IO_UART0_TX_FIFO => 32, -- TX fifo depth, has to be a power of two, min 1 |
IO_UART1_EN => true, -- implement secondary universal asynchronous receiver/transmitter (UART1)? |
IO_UART1_RX_FIFO => 1, -- RX fifo depth, has to be a power of two, min 1 |
IO_UART1_TX_FIFO => 1, -- TX fifo depth, has to be a power of two, min 1 |
IO_SPI_EN => true, -- implement serial peripheral interface (SPI)? |
IO_TWI_EN => true, -- implement two-wire interface (TWI)? |
IO_PWM_NUM_CH => 30, -- number of PWM channels to implement (0..60); 0 = disabled |
232,7 → 236,8
IO_CFS_CONFIG => (others => '0'), -- custom CFS configuration generic |
IO_CFS_IN_SIZE => 32, -- size of CFS input conduit in bits |
IO_CFS_OUT_SIZE => 32, -- size of CFS output conduit in bits |
IO_NEOLED_EN => true -- implement NeoPixel-compatible smart LED interface (NEOLED)? |
IO_NEOLED_EN => true, -- implement NeoPixel-compatible smart LED interface (NEOLED)? |
IO_NEOLED_TX_FIFO => 8 -- NEOLED TX FIFO depth, 1..32k, has to be a power of two |
) |
port map ( |
-- Global control -- |