mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 13:09:48 +00:00
8fbdf3ab38
GENSCRIPTS and GEN_DEPENDS in place of these. * Makefile.in: Regenerate. * genscripts_extra.sh: Delete. Merge extra functionality to.. * genscripts.sh: ..here. * emulparams/gld960.sh (TEXT_START_ADDR, TARGET_PAGE_SIZE): Define. * emulparams/gld960coff.sh (TEXT_START_ADDR, TARGET_PAGE_SIZE): Ditto. * emulparams/lnk960.sh (TEXT_START_ADDR, TARGET_PAGE_SIZE): Ditto. * emulparams/m88kbcs.sh (TEXT_START_ADDR, TARGET_PAGE_SIZE): Ditto. * emulparams/vanilla.sh (TEXT_START_ADDR, TARGET_PAGE_SIZE): Ditto.
20 lines
350 B
Bash
20 lines
350 B
Bash
SCRIPT_NAME=i960
|
|
OUTPUT_FORMAT=""
|
|
TEXT_START_ADDR=0
|
|
TARGET_PAGE_SIZE=128
|
|
ARCH=i960
|
|
TEMPLATE_NAME=gld960c
|
|
GLD_STYLE=1
|
|
COFF_CTORS='
|
|
___CTOR_LIST__ = .;
|
|
LONG((___CTOR_END__ - ___CTOR_LIST__) / 4 - 2)
|
|
*(.ctors)
|
|
LONG(0)
|
|
___CTOR_END__ = .;
|
|
___DTOR_LIST__ = .;
|
|
LONG((___DTOR_END__ - ___DTOR_LIST__) / 4 - 2)
|
|
*(.dtors)
|
|
LONG(0)
|
|
___DTOR_END__ = .;
|
|
'
|