projects
/
litex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4240058
)
simplesoc: free LED
author
Sebastien Bourdeauducq
<sb@m-labs.hk>
Sun, 13 Apr 2014 22:23:41 +0000
(
00:23
+0200)
committer
Sebastien Bourdeauducq
<sb@m-labs.hk>
Sun, 13 Apr 2014 22:23:41 +0000
(
00:23
+0200)
targets/simple.py
patch
|
blob
|
history
diff --git
a/targets/simple.py
b/targets/simple.py
index 4e5f752155870ca7c9893b4890227ee61c768597..08ec8cee6b0317cd8f76fa00ae46e78acede05b0 100644
(file)
--- a/
targets/simple.py
+++ b/
targets/simple.py
@@
-1,7
+1,7
@@
from migen.fhdl.std import *
from migen.bus import wishbone
-from misoclib import
gpio,
spiflash
+from misoclib import spiflash
from misoclib.gensoc import GenSoC
class SimpleSoC(GenSoC):
@@
-29,6
+29,4
@@
class SimpleSoC(GenSoC):
self.add_wb_slave(lambda a: a[27:29] == 2, self.sys_ram.bus)
self.add_cpu_memory_region("sdram", 0x40000000, sys_ram_size)
- self.submodules.leds = gpio.GPIOOut(platform.request("user_led"))
-
default_subtarget = SimpleSoC