projects
/
emu8051.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f72e34
)
Set program memory size default to 65536
author
Hugo Villeneuve
<hugo@hugovil.com>
Sat, 11 Jan 2014 22:26:25 +0000
(17:26 -0500)
committer
Hugo Villeneuve
<hugo@hugovil.com>
Sat, 11 Jan 2014 22:26:25 +0000
(17:26 -0500)
Before was set to 8192.
To make sure to not cause problems with bigger programs, or with small
programs that are split accross large memory regions.
src/common/memory.h
patch
|
blob
|
history
diff --git
a/src/common/memory.h
b/src/common/memory.h
index
fee41a6
..
be1c422
100644
(file)
--- a/
src/common/memory.h
+++ b/
src/common/memory.h
@@
-33,7
+33,7
@@
#define INT_MEM_MAX_SIZE 256
#define EXT_MEM_MAX_SIZE 65536
-#define PGM_MEM_DEFAULT_SIZE
8192
+#define PGM_MEM_DEFAULT_SIZE
PGM_MEM_MAX_SIZE
#define EXT_MEM_DEFAULT_SIZE 1024
enum mem_id_t {