1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-23 23:17:45 +00:00

Struct cleanup

git-svn-id: svn://svn.cc65.org/cc65/trunk@1259 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-04-24 18:46:49 +00:00
parent 2a921c4498
commit 5c4205b284
2 changed files with 3 additions and 13 deletions
+1 -6
View File
@@ -63,12 +63,7 @@ struct mod_ctrl {
/* Parameters set by the loader routine */
void* module; /* Pointer to module data */
unsigned module_size; /* Total size of loaded module */
void* code; /* Pointer to code segment */
unsigned code_size; /* Size of code segment */
void* data; /* Pointer to data segment */
unsigned data_size; /* Size of data segment */
void* bss; /* Pointer to bss segment */
unsigned bss_size; /* Size of bss segment */
unsigned module_id; /* Module id */
};