]> jspc29.x-matter.uni-frankfurt.de Git - trb3.git/commitdiff
Remove hierarchical stuff
authorAndreas Neiser <neiser@kph.uni-mainz.de>
Wed, 25 Feb 2015 07:57:46 +0000 (08:57 +0100)
committerAndreas Neiser <neiser@kph.uni-mainz.de>
Sat, 13 Jun 2015 15:36:59 +0000 (17:36 +0200)
ADC/source/adc_handler.vhd
ADC/source/adc_processor_cfd.vhd

index 2353af45d1d8cde0e5a10e5bf6b3ebdf8f06e58e..9cc7edbe3eb726187b9c07eb64dc93f579f34cb5 100644 (file)
@@ -31,10 +31,10 @@ entity adc_handler is
 end entity;
 
 architecture adc_handler_arch of adc_handler is
-  attribute syn_keep : boolean;
-  attribute syn_preserve : boolean;
-  attribute syn_hier : string;
-  attribute syn_hier of adc_handler_arch : architecture is "hard";
+--  attribute syn_keep : boolean;
+--  attribute syn_preserve : boolean;
+--  attribute syn_hier : string;
+--  attribute syn_hier of adc_handler_arch : architecture is "hard";
 
   type psa_data_t is array (0 to DEVICES - 1) of std_logic_vector(8 downto 0);
 
@@ -45,10 +45,10 @@ architecture adc_handler_arch of adc_handler is
 
   signal ctrl_reg   : std_logic_vector(31 downto 0);
   signal strobe_reg : std_logic_vector(31 downto 0);
-  attribute syn_keep of ctrl_reg : signal is true;
-  attribute syn_preserve of ctrl_reg : signal is true;
-  attribute syn_keep of strobe_reg : signal is true;
-  attribute syn_preserve of strobe_reg : signal is true;
+--  attribute syn_keep of ctrl_reg : signal is true;
+--  attribute syn_preserve of ctrl_reg : signal is true;
+--  attribute syn_keep of strobe_reg : signal is true;
+--  attribute syn_preserve of strobe_reg : signal is true;
 
   signal buffer_ctrl_reg : std_logic_vector(31 downto 0);
   signal adc_restart     : std_logic;
index 62ebc0a2ee1ffde3980aa673c8c7040ce27bbff3..5ab9e278c787cea6391946018e96110b6c4fc6c5 100644 (file)
@@ -31,14 +31,14 @@ entity adc_processor_cfd is
 end entity adc_processor_cfd;
 
 architecture arch of adc_processor_cfd is
-  attribute syn_hier : string;
-  attribute syn_keep : boolean;
-  attribute syn_preserve : boolean;
-  attribute syn_hier of arch : architecture is "hard";
+--  attribute syn_hier : string;
+--  attribute syn_keep : boolean;
+--  attribute syn_preserve : boolean;
+--  attribute syn_hier of arch : architecture is "hard";
 
   signal CONF_adc, CONF_sys : cfg_cfd_t := cfg_cfd_t_INIT;
-  attribute syn_keep of CONF_adc, CONF_sys : signal is true;
-  attribute syn_preserve of CONF_adc, CONF_sys : signal is true;
+--  attribute syn_keep of CONF_adc, CONF_sys : signal is true;
+--  attribute syn_preserve of CONF_adc, CONF_sys : signal is true;
 
   signal trigger_gen, trigger_mask : std_logic_vector(CHANNELS - 1 downto 0);
   type debug_t is array (CHANNELS - 1 downto 0) of debug_cfd_t;