summaryrefslogtreecommitdiffstats
path: root/sw/z80/kernel/include
diff options
context:
space:
mode:
authorleleraffa97@hotmail.it <leleraffa97@hotmail.it>2017-06-19 15:06:25 +0200
committerleleraffa97@hotmail.it <leleraffa97@hotmail.it>2017-06-19 15:06:25 +0200
commitacee9e74f6bd183b284af028b1f08aab666df9be (patch)
tree02d8df6267dd75dd92760ab9b8e924f4f4b8b400 /sw/z80/kernel/include
parentMerge branch 'master' of github.com:NaoPross/z80uPC into atlas (diff)
downloadz80uPC-master.tar.gz
z80uPC-master.zip
libc memset, memcmpHEADmaster
boot improved program allocation
Diffstat (limited to 'sw/z80/kernel/include')
-rw-r--r--sw/z80/kernel/include/progman.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sw/z80/kernel/include/progman.h b/sw/z80/kernel/include/progman.h
index 0f56bb3..5d01f1c 100644
--- a/sw/z80/kernel/include/progman.h
+++ b/sw/z80/kernel/include/progman.h
@@ -51,7 +51,6 @@ struct program_base {
size_t inst_size; // size of the instructions set
void * bss_data; // pointer to the bss/data space
size_t data_size; // size of the bss/data space
- size_t stack_size; // size of the stack to determine the stack limit
};
void prog_alloc(int8_t id, struct program_info *info, const struct program_base *base);