Esempio n. 1
0
def SRAM():
    return cs.MemoryRegion(
        name="SRAM",
        size=10**6,
        read_bandwidth=16,
        write_bandwidth=16,
        read_latency=0,
        write_latency=0,
        burst_length=1,
    )
Esempio n. 2
0
def DRAM():
    return cs.MemoryRegion(
        name="DRAM",
        size=10**9,
        read_bandwidth=8,
        write_bandwidth=8,
        read_latency=0,
        write_latency=0,
        burst_length=1,
    )
Esempio n. 3
0
def FLASH():
    return cs.MemoryRegion(
        name="FLASH",
        size=10**7,
        read_bandwidth=4,
        write_bandwidth=4,
        read_latency=0,
        write_latency=0,
        burst_length=1,
    )
Esempio n. 4
0
def SRAM():
    return cs.MemoryRegion(name="SRAM", size=10 ** 6, read_bandwidth=16, write_bandwidth=16)
Esempio n. 5
0
def DRAM():
    return cs.MemoryRegion(name="DRAM", size=10 ** 9, read_bandwidth=8, write_bandwidth=8)
Esempio n. 6
0
def FLASH():
    return cs.MemoryRegion(name="FLASH", size=10 ** 7, read_bandwidth=4, write_bandwidth=4)