Skip to content

Commit bea98b2

Browse files
Thomas B. Preußerpreusser
authored andcommitted
Merge branch 'typos-1' of https://github.com/JacobCWard/q27 into JacobCWard-typos-1
2 parents 19dff78 + 593ae32 commit bea98b2

File tree

13 files changed

+39
-39
lines changed

13 files changed

+39
-39
lines changed

src/cpp/DBEntry.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace queens {
3131

3232
/**
3333
* Thin wrapper class for accessing a database entry. It enables a more
34-
* comfortable access to the binary entry layout, wich comprises two
34+
* comfortable access to the binary entry layout, which comprises two
3535
* 64-bit words stored in network byte order (big endian):
3636
*
3737
*
@@ -69,7 +69,7 @@ namespace queens {
6969
* zero in this case. Otherwise, a DBEntry just provides the interpretation
7070
* for the two adjacent underlying 64-bit words of a memory-mapped database.
7171
* The corresponding objects are not really constructed but rather obtained
72-
* by reinterpreting the pointer to the backing memory, e.g. thorugh an
72+
* by reinterpreting the pointer to the backing memory, e.g. through an
7373
* reinterprete_cast<DBEntry*>(ptr).
7474
*/
7575
class DBEntry {

src/cpp/q27db.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ namespace {
283283
DBConstRange range(dbx.roRange());
284284
DBEntry const *const beg = range.begin();
285285

286-
{ // Parse range restictions
286+
{ // Parse range restrictions
287287
RangeParser parser;
288288
for(int i = 0; i < argc; i++) {
289289
try {

src/vhdl/PoC/common/physical.vhdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ package body physical is
853853

854854
-- calculate needed counter cycles to achieve a given 1. timing/delay and 2. frequency/period
855855
-- ===========================================================================
856-
-- @param Timing A given timing or delay, which should be achived
856+
-- @param Timing A given timing or delay, which should be archived
857857
-- @param Clock_Period The period of the circuits clock
858858
-- @RoundingStyle Default = round to nearest; other choises: ROUND_UP, ROUND_DOWN
859859
function TimingToCycles(Timing : time; Clock_Period : time; RoundingStyle : T_ROUNDING_STYLE := ROUND_UP) return natural is

src/vhdl/PoC/common/strings.vhdl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ package body strings is
667667
if (str'length > 0) then
668668
-- WORKAROUND: for Altera Quartus-II
669669
-- Version: 15.0
670-
-- Issue: array bounds are check regardless of the hierachy and control flow
670+
-- Issue: array bounds are check regardless of the hierarchy and control flow
671671
Result(1 to imin(Size, imax(1, str'length))) := ite((str'length > 0), str(1 to imin(Size, str'length)), ConstNUL);
672672
end if;
673673
return Result;
@@ -729,7 +729,7 @@ package body strings is
729729
end function;
730730

731731
-- compare two STRINGs for equality
732-
-- pre-check the string lengthes to suppress warnings for unqual sized string comparisions.
732+
-- pre-check the string lengths to suppress warnings for unequal sized string comparisons.
733733
-- QUESTION: overload "=" operator?
734734
function str_equal(str1 : string; str2 : string) return boolean is
735735
begin

src/vhdl/PoC/common/vectors.vhdl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ package vectors is
8484
-- myMatrix'range(2) returns always myMatrix'range(1); see work-around notes below
8585
--
8686
-- USAGE NOTES:
87-
-- dimmension 1 => rows - e.g. Words
88-
-- dimmension 2 => columns - e.g. Bits/Bytes in a word
87+
-- dimension 1 => rows - e.g. Words
88+
-- dimension 2 => columns - e.g. Bits/Bytes in a word
8989
--
9090
-- WORKAROUND: for Xilinx ISE/iSim
9191
-- Version: 14.2
@@ -776,7 +776,7 @@ package body vectors is
776776
function to_slm(slvv : T_SLVV_8) return T_SLM is
777777
-- variable test : STD_LOGIC_VECTOR(T_SLV_8'range);
778778
-- variable slm : T_SLM(slvv'range, test'range); -- BUG: iSIM 14.5 cascaded 'range accesses let iSIM break down
779-
-- variable slm : T_SLM(slvv'range, T_SLV_8'range); -- BUG: iSIM 14.5 allocates 9 bits in dimmension 2
779+
-- variable slm : T_SLM(slvv'range, T_SLV_8'range); -- BUG: iSIM 14.5 allocates 9 bits in dimension 2
780780
variable slm : T_SLM(slvv'range, 7 downto 0); -- WORKAROUND: use constant range
781781
begin
782782
-- report "slvv: slvv.length=" & INTEGER'image(slvv'length) & " slm.dim0.length=" & INTEGER'image(slm'length(1)) & " slm.dim1.length=" & INTEGER'image(slm'length(2)) severity NOTE;

src/vhdl/PoC/fifo/fifo_cc_got_tempput.vhdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ architecture rtl of fifo_cc_got_tempput is
128128
signal IP1 : unsigned(A_BITS-1 downto 0);
129129
signal OP1 : unsigned(A_BITS-1 downto 0);
130130

131-
-- Commited Write Pointer (Commit Marker)
131+
-- Committed Write Pointer (Commit Marker)
132132
signal IPm : unsigned(A_BITS-1 downto 0) := (others => '0');
133133

134134
-----------------------------------------------------------------------------

src/vhdl/PoC/sync/sync_Bits.vhdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
-- clock-domain 'Clock'. The clock-domain boundary crossing is done by two
1414
-- synchronizer D-FFs. All bits are independent from each other. If a known
1515
-- vendor like Altera or Xilinx are recognized, a vendor specific
16-
-- implementation is choosen.
16+
-- implementation is chosen.
1717
--
1818
-- ATTENTION:
1919
-- Use this synchronizer only for long time stable signals (flags).

src/vhdl/queens/expand_blocking.vhdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ architecture rtl of expand_blocking is
5151
constant M : positive := log2ceil(N);
5252

5353
-- Decoded Placement
54-
-- Frame Indeces: 0 - west, 1 - north, 2 - east, 3 - south
54+
-- Frame Indices: 0 - west, 1 - north, 2 - east, 3 - south
5555
subtype tRow is std_logic_vector(0 to N-1);
5656
type tEdge is array(0 to L-1) of tRow;
5757
type tFrame is array(0 to 3) of tEdge;

src/vhdl/top/dnk7_f5/dini/fifo/fifo_async_blk_reg.v

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//
66
// A modification to the BLKRAM FIFO so that the input data/control, and
77
// output data/control are registered before going to the BLKRAM. This is
8-
// to make timing closure easier.
8+
// to make timing closure easier.
99
//
1010
// This module should NOT be used in places where latency is important.
1111
//
@@ -87,7 +87,7 @@
8787
// Added optional clobbering of output data when not reading (simulation only).
8888
//
8989
// Revision 1.2 2012/11/26 16:54:21 neal
90-
// Fixed up some status output ports to make them more useable in some conditions.
90+
// Fixed up some status output ports to make them more usable in some conditions.
9191
//
9292
// Revision 1.1 2012/06/05 02:59:29 neal
9393
// Added a pipelined FIFO.
@@ -227,14 +227,14 @@ generate
227227
.GEN_WRALMOSTFULL(GEN_WRALMOSTFULL)
228228
) i_sel_fifo (
229229
.reset(reset),
230-
230+
231231
.wr_clk(wr_clk),
232232
.wr_en(INPUT_REG ? wr_en_d : wr_en),
233233
.wr_din(wr_din_checksum), //.wr_din(INPUT_REG ? wr_din_d : wr_din),
234234
.wr_full(wr_full_preclobber),
235235
.wr_almostfull(wr_almostfull),
236236
.wr_full_count(wr_full_count_selram),
237-
237+
238238
.rd_clk(rd_clk),
239239
.rd_en(wr_en_blkram),
240240
.rd_dout(wr_din_blkram),
@@ -343,7 +343,7 @@ always @(posedge rd_clk /*or posedge reset_rdclk*/) begin
343343
ff_rd_empty <= 1'b1;
344344
reg_rd_dout <= 'b0; // output FF from registered FIFO
345345
ff_rd_dout <= 'b0; // secondary FF between FIFO and output FF
346-
end else
346+
end else
347347
*/
348348
begin
349349
if ((ff_rd_empty==1'b1) && (OUTPUT_REG==1)) begin

src/vhdl/top/dnk7_f5/dnk7_queens0.vhdl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ architecture rtl of dnk7_queens0 is
8484
----------------------------------------------------------------------------
8585
-- Communication Addresses
8686

87-
-- Word Adress: Read Write
87+
-- Word Address: Read Write
8888
-----------------------------------------------------------------------------
8989
-- 0x0000 <byte capacity:32> <-:30><enable:2> input interrupt
9090
-- 0x0004 <bytes available:32> <-:30><enable:2> output interrupt
@@ -136,7 +136,7 @@ architecture rtl of dnk7_queens0 is
136136
dcm_psclk : in std_logic;
137137
dcm_psen : in std_logic;
138138
dcm_psincdec : in std_logic;
139-
139+
140140
target_address : out std_logic_vector(63 downto 0);
141141
target_write_data : out std_logic_vector(63 downto 0);
142142
target_write_be : out std_logic_vector(7 downto 0);
@@ -442,7 +442,7 @@ begin
442442
target_read_data <= rdDat;
443443
target_read_data_tag <= rdTag;
444444
target_read_data_ctrl <= rdCtl;
445-
445+
446446
end block blkRead;
447447

448448
---------------------------------------------------------------------------
@@ -633,7 +633,7 @@ begin
633633
begin
634634

635635
-------------------------------------------------------------------------
636-
-- Ouput Inverted Clock
636+
-- Output Inverted Clock
637637
blkClock : block
638638
signal clk_inv : std_logic;
639639
begin
@@ -666,8 +666,8 @@ begin
666666
end block blkClock;
667667

668668
-------------------------------------------------------------------------
669-
-- Pre-placement Ouput
670-
669+
-- Pre-placement Output
670+
671671
-- Syncing stall input
672672
process(clk_slow)
673673
begin
@@ -680,7 +680,7 @@ begin
680680
end if;
681681
end process;
682682
pigot <= avld and not stall_s(0);
683-
683+
684684
-- Output Registers
685685
process(clk_slow)
686686
begin
@@ -766,7 +766,7 @@ begin
766766
);
767767
rst_in <= '0';
768768
end block blkClock;
769-
769+
770770
-- Bus Input Capture
771771
process(clk_in)
772772
begin
@@ -867,7 +867,7 @@ begin
867867
soeof => soeof,
868868
sogot => sogot
869869
);
870-
870+
871871
enframe_i: entity work.enframe
872872
generic map (
873873
SENTINEL => SENTINEL

0 commit comments

Comments
 (0)