2874806048
Put end of sentence at end of line. This is roff(7) syntax so the formatter can make spacing between sentences. Use the macro .PP to break paragraphs. Use bold for the command name in SYNOPSIS, to match other ack manuals.
28 lines
921 B
Groff
28 lines
921 B
Groff
.TH AELFLOD 1 "$Revision$"
|
|
.SH NAME
|
|
aelflod \- ACK ELF loader
|
|
.SH SYNOPSIS
|
|
.B aelflod
|
|
[-h] [-v] inputfile outputfile
|
|
.SH DESCRIPTION
|
|
.I aelflod
|
|
converts an absolute ack.out file into a simple binary memory
|
|
dump wrapped up in an ELF executable.
|
|
It is suitable for producing executables for operating systems
|
|
such as Linux.
|
|
.PP
|
|
The input file must contain exactly four segments: TEXT, ROM,
|
|
DATA and BSS, in that order, all occupying contiguous memory.
|
|
The file must have all references resolved and be linked to a
|
|
fixed address.
|
|
The fixed address must be at least 0x54 bytes greater than a
|
|
page boundary, in order to make room for the ELF header itself.
|
|
.PP
|
|
aelflod will write out an ELF header followed by each segment, in
|
|
order, ensuring that enough padding is inserted between each segment
|
|
to keep the offsets correct.
|
|
The created executable will contain just one rwx segment, and no
|
|
sections.
|
|
.SH "SEE ALSO"
|
|
ack.out(5)
|