Skip to content

Commit 81de9b0

Browse files
committed
#1492: Updated code example tests.
1 parent a6c2640 commit 81de9b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/styles/jcl/PIC.fixed.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ architecture BEHAVIORAL of PIC is
6767
signal int_type : unsigned(1 downto 0) := "01";
6868
signal int_index, count_cmd : integer := 0;
6969

70-
type prior_table is array (0 to 7) of unsigned(2 downto 0);
70+
type prior_table is array(0 to 7) of unsigned(2 downto 0);
7171

7272
signal pt : prior_table := (others => (others => '0'));
7373
signal int_pt : unsigned(2 downto 0) := "000";

tests/styles/jcl/graphicsaccelerator/FrameBuffer2.fixed.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ end entity FRAMEBUFFER;
1919

2020
architecture BEHAVIORAL of FRAMEBUFFER is
2121

22-
type fbuffer is array (0 to 524288 / 16 - 1) of std_logic_vector(2 downto 0);
22+
type fbuffer is array(0 to 524288 / 16 - 1) of std_logic_vector(2 downto 0);
2323

2424
impure function initfb return fbuffer is
2525

0 commit comments

Comments
 (0)