dt: baudrate an PLL (50MHz) angepasst
[calu.git] / cpu / src / gpm.vhd
index 7bba4007c08164e749058416262f9c40e6c83d16..1012c7b317dc3cac28285eb5b8c791f17756a452 100644 (file)
@@ -4,15 +4,15 @@ use IEEE.numeric_std.all;
 
 use work.common_pkg.all;
 use work.alu_pkg.all;
-use work.extension_pgk.all;
+use work.extension_pkg.all;
 
 entity gpm is
 
        generic (
                        -- active reset value
-                       RESET_VALUE : std_logic;
+                       RESET_VALUE : std_logic
                        -- active logic value
-                       LOGIC_ACT : std_logic
+                       --LOGIC_ACT : std_logic
                        
                        );
        port(
@@ -20,20 +20,20 @@ entity gpm is
                 clk : in std_logic;
                reset : in std_logic;
 
-                exti : in extmod_rec;
+                --exti : in extmod_rec;
                 --alu outpus
                 alu_nxt : in alu_result_rec;
                 --input
                 
                 --output
-                psw     : out status_rec;
+                psw     : out status_rec
                 --to memcnt
-                addr : out gp_register_t;
-                mem_en : out std_logic;
-                ldst : out std_logic;
+                --addr : out gp_register_t;
+                --mem_en : out std_logic;
+                --ldst : out std_logic;
                 --, hw,byte: std_logic;
                 --to output bus
-                exto : out data_ram_word_t
+                --exto : out data_ram_word_t
                         
         );