Revision 1550
Added by markw about 24 hours ago
| top.vhdl | ||
|---|---|---|
|
process(addr_decoded5,CH0_REG,CH1_REG,CH2_REG,CH3_REG,
|
||
|
ram_cpu_addr_reg, ram_data,
|
||
|
irq_en_reg,irq_active_reg,
|
||
|
adpcm_reg,bits8_reg
|
||
|
adpcm_reg,bits8_reg,
|
||
|
ram_record_enabled_reg, ram_record_source_reg
|
||
|
)
|
||
|
begin
|
||
|
DO <= (others=>'0');
|
||
| ... | ... | |
|
DO(3 downto 0) <= adpcm_reg;
|
||
|
DO(7 downto 4) <= bits8_reg;
|
||
|
end if;
|
||
|
if (addr_decoded5(20)='1') then
|
||
|
DO(0) <= ram_record_enabled_reg;
|
||
|
DO(1) <= ram_record_source_reg;
|
||
|
end if;
|
||
|
end process;
|
||
|
|
||
|
process(adpcm_channel,adpcm_store,addr,bits8,dma_on,adpcm_on,write_enable)
|
||
Allow reading the record reg.