Use little endian byte order in network streams
This commit is contained in:
parent
ccd911dc1e
commit
24e3b11588
1 changed files with 2 additions and 2 deletions
|
@ -51,9 +51,9 @@ begin
|
|||
|
||||
led_addr => led_addr,
|
||||
|
||||
led_red => current_color(7 downto 0),
|
||||
led_red => current_color(23 downto 16),
|
||||
led_green => current_color(15 downto 8),
|
||||
led_blue => current_color(23 downto 16),
|
||||
led_blue => current_color(7 downto 0),
|
||||
|
||||
dout => driver_out
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue