progmem 8KB -> 16KB
Stefan Schuermans

Stefan Schuermans commited on 2012-03-24 19:04:32
Showing 2 changed files, with 2 additions and 2 deletions.

... ...
@@ -3,7 +3,7 @@ SECTIONS
3 3
   . = 0x00000000;
4 4
   .rom : {
5 5
      *(.text)
6
-     . = 0x00002000;
6
+     . = 0x00004000;
7 7
   }
8 8
   . = 0x00010000;
9 9
   .ram : {
... ...
@@ -26,7 +26,7 @@ END ENTITY e_system;
26 26
 
27 27
 ARCHITECTURE a_system OF e_system IS
28 28
 
29
-    CONSTANT c_instr_addr_width: natural := 13;
29
+    CONSTANT c_instr_addr_width: natural := 14;
30 30
     CONSTANT c_data_addr_width:  natural := 13;
31 31
 
32 32
     SIGNAL rst: std_logic := '0';
33 33