Skip to content

Commit 47214a4

Browse files
committed
fix various typos
1 parent e60437f commit 47214a4

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Lambdalib Introduction
22

3-
Lambdalib is a modular hardware abstraction library decouples design from the uderlying manufacturing target. Lambdalib defines a set of generic functions that get resolved during the target technology mapping stage.
3+
Lambdalib is a modular hardware abstraction library decouples design from the underlying manufacturing target. Lambdalib defines a set of generic functions that get resolved during the target technology mapping stage.
44

55
Lambdalib includes the following hardware categories:
66

lambdalib/auxlib/rtl/la_oddr.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module la_oddr #(
1717
reg in1_sh;
1818
always @(clk or in1) if (~clk) in1_sh <= in1;
1919

20-
//Using clock as data selctor
20+
//Using clock as data selector
2121
assign out = clk ? in1_sh : in0;
2222

2323
endmodule

lambdalib/fpgalib/rtl/la_clb4p0.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
* 1. N=2, I=4
2727
* 2. test1: CLB configured as separate and4, or4 gates
28-
* 3. test2" LB confiugred as combined and7 (in[7]=ignored)
28+
* 3. test2" LB configured as combined and7 (in[7]=ignored)
2929
*
3030
******************************************************************************/
3131

lambdalib/iolib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
| ---------------------------------|---------|-----------------------------|
77
[[la_iobidir](./rtl/la_iobidir.v) | Digital | Bidirectional
88
[la_ioinput](./rtl/la_ioinput.v) | Digital | Input
9-
[la_ioxtal](./rtl/la_ioxtal.v) | Digital | Xtal tranceiver
9+
[la_ioxtal](./rtl/la_ioxtal.v) | Digital | Xtal transceiver
1010
[la_iorxdiff](./rtl/la_iorxdiff.v) | Digital | Differential input
1111
[la_iotxdiff](./rtl/la_iotxdiff.v) | Digital | Differential output
1212
[la_ioanalog](./rtl/la_ioanalog.v) | Analog | Pass through ESD protection
@@ -24,7 +24,7 @@
2424
## PARAMETERS
2525

2626
### CFGW
27-
The `CFGW` parameter defines the width of the configuration bus of the io cell. IO cells generally include a set of configuration inputs for things like drive strength and operating modes. Setting `CFGW` to a large value (eg. 16/32) should have zero impact on the design as the extra bus bits get optimized away during implementation. The connection between the generic `CFG` bus and the technology specific IO cell is done within the techology specific cell wrapper library.
27+
The `CFGW` parameter defines the width of the configuration bus of the io cell. IO cells generally include a set of configuration inputs for things like drive strength and operating modes. Setting `CFGW` to a large value (eg. 16/32) should have zero impact on the design as the extra bus bits get optimized away during implementation. The connection between the generic `CFG` bus and the technology specific IO cell is done within the technology specific cell wrapper library.
2828

2929
For la_bidir, the first 8 bits of the configuration bus are reserved for the functionality shown in the table below.
3030

lambdalib/padring/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The lamdbdalib `padring` library is an automated "pure verilog" padring generato
77
## PARAMETERS
88

99
### {NO,EA,WE,SO}NCELLS
10-
Specifies the total number of placed cells within one side of the padring, includig supply and clamp cells.
10+
Specifies the total number of placed cells within one side of the padring, including supply and clamp cells.
1111

1212
### {NO,EA,WE,SO}NPINS
1313
Specifies the total number of logical device pins (pads) connected to one side of the padring, not including supply pins. The `CELLMAP` parameter specifies which one of the pins should be connected to a cell.

lambdalib/padring/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
########################
99
def setup(chip):
1010
'''
11-
Lambdalib pandring
11+
Lambdalib padring
1212
'''
1313

1414
lib = Library(chip, 'lambdalib_padring', package='lambdalib', auto_enable=True)

lambdalib/ramlib/rtl/la_asyncfifo.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* supplied on a per macro basis.
1515
*
1616
* Technologoy specific implementations of "la_dpram" would generally include
17-
* one ore more hardcoded instantiations of RAM modules with a generate
17+
* one or more hardcoded instantiations of RAM modules with a generate
1818
* statement relying on the "PROP" to select between the list of modules
1919
* at build time.
2020
*

lambdalib/ramlib/rtl/la_dpram.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* supplied on a per macro basis.
1515
*
1616
* Technologoy specific implementations of "la_dpram" would generally include
17-
* one ore more hardcoded instantiations of RAM modules with a generate
17+
* one or more hardcoded instantiations of RAM modules with a generate
1818
* statement relying on the "PROP" to select between the list of modules
1919
* at build time.
2020
*

lambdalib/ramlib/rtl/la_spram.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* supplied on a per macro basis.
1515
*
1616
* Technologoy specific implementations of "la_spram" would generally include
17-
* one ore more hardcoded instantiations of RAM modules with a generate
17+
* one or more hardcoded instantiations of RAM modules with a generate
1818
* statement relying on the "PROP" to select between the list of modules
1919
* at build time.
2020
*

lambdalib/ramlib/rtl/la_spregfile.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* supplied on a per macro basis.
1515
*
1616
* Technologoy specific implementations of "la_spregfile" would generally
17-
* include one ore more hardcoded instantiations of RF modules with a generate
17+
* include one or more hardcoded instantiations of RF modules with a generate
1818
* statement relying on the "PROP" to select between the list of modules
1919
* at build time.
2020
*

0 commit comments

Comments
 (0)