diff options
| author | whitequark <whitequark@whitequark.org> | 2019-08-04 09:35:14 +0000 |
|---|---|---|
| committer | whitequark <whitequark@whitequark.org> | 2019-08-04 09:35:14 +0000 |
| commit | 6fd7735f77b9a5d7171b3517293af745c6f04801 (patch) | |
| tree | 2938e9845a683a682d0fe1794cf6bdac413858c3 /nmigen_boards/icestick.py | |
| parent | 2cf8599c4a3ef4ae9efa9f1485e836f90ba6fb39 (diff) | |
Remove useless _blinky.build_and_program() function.
Diffstat (limited to 'nmigen_boards/icestick.py')
| -rw-r--r-- | nmigen_boards/icestick.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nmigen_boards/icestick.py b/nmigen_boards/icestick.py index bdeb112..dccf34c 100644 --- a/nmigen_boards/icestick.py +++ b/nmigen_boards/icestick.py @@ -53,5 +53,5 @@ class ICEStickPlatform(LatticeICE40Platform): if __name__ == "__main__": - from ._blinky import build_and_program - build_and_program(ICEStickPlatform) + from ._blinky import Blinky + ICEStickPlatform().build(Blinky(), do_program=True) |
