mirror of
git://projects.qi-hardware.com/nn-usb-fpga.git
synced 2025-04-21 12:27:27 +03:00
Fixing analog and digital ground on LCD's SAKC circuit
This commit is contained in:
@@ -84,7 +84,7 @@ architecture logic of plasma is
|
||||
|
||||
begin
|
||||
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
-- PROCESSOR
|
||||
-- CLOCK DIVIDER
|
||||
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
led <= not(rst_in);
|
||||
reset <= not(rst_in);
|
||||
@@ -98,8 +98,8 @@ begin
|
||||
end if;
|
||||
end process;
|
||||
|
||||
write_enable <= '1' when cpu_byte_we /= "0000" else '0';
|
||||
cpu_pause <= (uart_write_busy and cs_uart and write_enable);
|
||||
write_enable <= '1' when cpu_byte_we /= "0000" else '0';
|
||||
cpu_pause <= (uart_write_busy and cs_uart and write_enable);
|
||||
|
||||
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
-- PROCESSOR
|
||||
@@ -163,7 +163,8 @@ begin
|
||||
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
-- PIC
|
||||
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
pic_proc: process(clk, reset, cpu_address, cs_pic, cpu_pause, cpu_byte_we, irq_mask_reg, irq_status, cpu_data_w)
|
||||
pic_proc: process(clk, reset, cpu_address, cs_pic, cpu_pause, cpu_byte_we, irq_mask_reg, irq_status, cpu_data_w,
|
||||
uart_write_busy, uart_data_avail)
|
||||
begin
|
||||
|
||||
irq_status <= ZERO(5 downto 0) & not uart_write_busy & uart_data_avail;
|
||||
|
||||
Reference in New Issue
Block a user