mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
gensoc: add Papilio Pro ID
This commit is contained in:
parent
4ba796417d
commit
b212e0279d
1 changed files with 3 additions and 2 deletions
|
@ -25,8 +25,9 @@ class GenSoC(Module):
|
||||||
"timer0": 1,
|
"timer0": 1,
|
||||||
}
|
}
|
||||||
known_platform_id = defaultdict(lambda: 0x554E, {
|
known_platform_id = defaultdict(lambda: 0x554E, {
|
||||||
"mixxeo": 0x4D58,
|
"mixxeo": 0x4D58,
|
||||||
"m1": 0x4D31
|
"m1": 0x4D31,
|
||||||
|
"papilio_pro": 0x5050
|
||||||
})
|
})
|
||||||
|
|
||||||
def __init__(self, platform, clk_freq, cpu_reset_address, sram_size, l2_size=0):
|
def __init__(self, platform, clk_freq, cpu_reset_address, sram_size, l2_size=0):
|
||||||
|
|
Loading…
Reference in a new issue