Fix data segement. You may now use stuff like int foo = 1; in global context (as opposed to both int foo = 0; which is bss and const int foo = 1; which is rodata) without having the sky come

crashing down
This commit is contained in:
henryk@ploetzli.ch 2009-09-08 15:40:22 +00:00
commit 1b2c893632
4 changed files with 34 additions and 9 deletions

View file

@ -13,7 +13,7 @@ DWORD BigBuf[12000];
/// appmain.h
void ReadMem(int addr);
void AppMain(void);
void __attribute__((noreturn)) AppMain(void);
void SamyRun(void);
void DbpIntegers(int a, int b, int c);
void DbpString(char *str);