mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-21 05:43:23 -07:00
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:
parent
715d74c5be
commit
1b2c893632
4 changed files with 34 additions and 9 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue