OpenCores
URL https://opencores.org/ocsvn/neorv32/neorv32/trunk

Subversion Repositories neorv32

[/] [neorv32/] [trunk/] [sim/] [neorv32_tb.vhd] - Diff between revs 12 and 14

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 12 Rev 14
Line 157... Line 157...
    IO_UART_USE                  => true,          -- implement universal asynchronous receiver/transmitter (UART)?
    IO_UART_USE                  => true,          -- implement universal asynchronous receiver/transmitter (UART)?
    IO_SPI_USE                   => true,          -- implement serial peripheral interface (SPI)?
    IO_SPI_USE                   => true,          -- implement serial peripheral interface (SPI)?
    IO_TWI_USE                   => true,          -- implement two-wire interface (TWI)?
    IO_TWI_USE                   => true,          -- implement two-wire interface (TWI)?
    IO_PWM_USE                   => true,          -- implement pulse-width modulation unit (PWM)?
    IO_PWM_USE                   => true,          -- implement pulse-width modulation unit (PWM)?
    IO_WDT_USE                   => true,          -- implement watch dog timer (WDT)?
    IO_WDT_USE                   => true,          -- implement watch dog timer (WDT)?
    IO_CLIC_USE                  => true,          -- implement core local interrupt controller (CLIC)?
 
    IO_TRNG_USE                  => false,         -- CANNOT BE SIMULATED!
    IO_TRNG_USE                  => false,         -- CANNOT BE SIMULATED!
    IO_DEVNULL_USE               => true           -- implement dummy device (DEVNULL)?
    IO_DEVNULL_USE               => true           -- implement dummy device (DEVNULL)?
  )
  )
  port map (
  port map (
    -- Global control --
    -- Global control --
Line 195... Line 194...
    twi_sda_io => twi_sda,         -- twi serial data line
    twi_sda_io => twi_sda,         -- twi serial data line
    twi_scl_io => twi_scl,         -- twi serial clock line
    twi_scl_io => twi_scl,         -- twi serial clock line
    -- PWM --
    -- PWM --
    pwm_o      => open,            -- pwm channels
    pwm_o      => open,            -- pwm channels
    -- Interrupts --
    -- Interrupts --
    ext_irq_i  => (others => '0'), -- external interrupt request
    mext_irq_i => '0'              -- machine external interrupt
    ext_ack_o  => open             -- external interrupt request acknowledge
 
  );
  );
 
 
  -- TWI termination --
  -- TWI termination --
  twi_scl <= 'H';
  twi_scl <= 'H';
  twi_sda <= 'H';
  twi_sda <= 'H';

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.