Skip to content

Commit

Permalink
Do not generate csr memory region.
Browse files Browse the repository at this point in the history
This is a special region that contains all peripherals,
not a normal memory, so it should not be generated.
  • Loading branch information
mateusz-holenko committed Jul 22, 2019
1 parent 0d3b303 commit bd77b6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions generate-renode-scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
import zlib
import argparse

# this memory region is defined and handled
# directly by LiteEth model in Renode
non_generated_mem_regions = ['ethmac', 'spiflash']
# those memory regions are handled in a special way
# and should not be generated automatically
non_generated_mem_regions = ['ethmac', 'spiflash', 'csr']

mem_regions = {}
peripherals = {}
Expand Down

0 comments on commit bd77b6c

Please sign in to comment.