17 lines
No EOL
430 B
C
17 lines
No EOL
430 B
C
#ifndef TCC_I386_LINK_H
|
|
# define TCC_I386_LINK_H 1
|
|
|
|
/* relocation type for 32 bit data relocation */
|
|
# define R_DATA_32 R_386_32
|
|
# define R_DATA_PTR R_386_32
|
|
# define R_JMP_SLOT R_386_JMP_SLOT
|
|
# define R_GLOB_DAT R_386_GLOB_DAT
|
|
# define R_COPY R_386_COPY
|
|
# define R_RELATIVE R_386_RELATIVE
|
|
|
|
# define R_NUM R_386_NUM
|
|
|
|
# define ELF_START_ADDR 0x08048000
|
|
# define ELF_PAGE_SIZE 0x1000
|
|
|
|
#endif /* !TCC_I386_LINK_H */ |