Skip to content

Commit 3150b2c

Browse files
committed
sample -> examples
1 parent 1110c18 commit 3150b2c

40 files changed

+63
-73
lines changed

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
include README.md
22
include README.rst
3-
include led.py
3+
include hello_led.py
44
include docker/Dockerfile
55
recursive-include utils *
6-
recursive-include sample *
6+
recursive-include examples *
77
recursive-include tests *

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
.PHONY: all
2-
all: clean
3-
41
.PHONY: clean
52
clean:
63
make clean -C ./veriloggen
74
make clean -C ./utils
8-
make clean -C ./sample
5+
make clean -C ./examples
96
make clean -C ./tests
10-
rm -rf *.pyc __pycache__ veriloggen.egg-info build dist
7+
rm -rf *.pyc __pycache__ *.out veriloggen.egg-info build dist
118

129
.PHONY: release
1310
release:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,18 +71,18 @@ Dockerfile is available, so that you can try Veriloggen on Docker without any in
7171
cd docker
7272
sudo docker build -t user/veriloggen .
7373
sudo docker run --name veriloggen -i -t user/veriloggen /bin/bash
74-
cd veriloggen/sample/led/
74+
cd veriloggen/examples/led/
7575
make
7676
```
7777

7878

7979
Getting Started
8080
==============================
8181

82-
You can find some examples in 'veriloggen/sample/' and 'veriloggen/tests'.
82+
You can find some examples in 'veriloggen/examples/' and 'veriloggen/tests'.
8383

8484
Let's begin veriloggen by an example. Create a example Python script in Python as below. A blinking LED hardware is modeled in Python.
85-
Open 'led.py' in the root directory.
85+
Open 'hello_led.py' in the root directory.
8686

8787
```python
8888
import sys

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,18 +83,18 @@ without any installation on your host platform.
8383
cd docker
8484
sudo docker build -t user/veriloggen .
8585
sudo docker run --name veriloggen -i -t user/veriloggen /bin/bash
86-
cd veriloggen/sample/led/
86+
cd veriloggen/examples/led/
8787
make
8888

8989
Getting Started
9090
===============
9191

92-
You can find some examples in 'veriloggen/sample/' and
92+
You can find some examples in 'veriloggen/examples/' and
9393
'veriloggen/tests'.
9494

9595
Let's begin veriloggen by an example. Create a example Python script in
9696
Python as below. A blinking LED hardware is modeled in Python. Open
97-
'led.py' in the root directory.
97+
'hello\_led.py' in the root directory.
9898

9999
.. code:: python
100100
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)