From: Jason Self Date: Tue, 23 Apr 2019 12:37:09 +0000 (-0700) Subject: Add man page for zilasm X-Git-Url: https://jxself.org/git/?p=zilutils.git;a=commitdiff_plain;h=5db546ee101b3f6c5abf5c626d5b95202272d70f Add man page for zilasm --- diff --git a/zilasm/Makefile.am b/zilasm/Makefile.am index 9378980..5134797 100644 --- a/zilasm/Makefile.am +++ b/zilasm/Makefile.am @@ -19,6 +19,6 @@ # SPDX-License-Identifier: AGPL-3.0-or-later bin_PROGRAMS = zilasm - +man_MANS = zilasm.1 zilasm_SOURCES = main.c opcodes.c symtable.c header.c parser.c directives.c labels.c zmem.c include_HEADERS = opcodes.h symtable.h header.h parser.h directives.h labels.h zmem.h diff --git a/zilasm/zilasm.1 b/zilasm/zilasm.1 new file mode 100644 index 0000000..f974eeb --- /dev/null +++ b/zilasm/zilasm.1 @@ -0,0 +1,63 @@ +.\" Copyright (C) 2019 Jason Self +.\" +.\" This file is part of zilutils/zilasm. +.\" +.\" You can redistribute and/or modify this file under the terms of +.\" the GNU Affero General Public License as published by the Free +.\" Software Foundation, either version 3 of the License, or (at your +.\" option) any later version. +.\" +.\" This file is distributed in the hope that it will be useful, but +.\" WITHOUT ANY WARRANTY; without even the implied warranty of +.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +.\" Affero General Public License for more details. +.\" +.\" You should have received a copy of the GNU Affero General Public +.\" License along with zilasm. If not, see +.\" . +.TH zilasm 1 +.SH NAME +zilasm \- an assembler that targets the Z-Machine +.SH SYNOPSIS +.B zilasm +[OPTIONS] +.IR files +.SH DESCRIPTION +.BR zilasm +is part of the zilutils package. The zilutils comprise a compiler and +assembler that target the Z-Machine. +.SH OPTIONS +.TP +.BR \-\-version +Display assembler version and exit +.TP +.BR \-\-zversion +Set the Z-Machine version target. Accepts numbers 1 - 8, defaults to +6 if not specified. +.TP +.BR \-\-zorkid +Set the release number of the assembled program. Accepts an integer +between 0 and 65535, defaults to 0 if not specified. +.TP +.BR \-\-serial +Sets the serial number for the assembled program using six characters +of ASCII, defaults to current date in the form YYMMDD if not +specified. +.SH REPORTING BUGS +Report bugs to Jason Self +.SH COPYRIGHT +This file is part of zilasm. zilasm is free software: you can +redistribute it and/or modify it under the terms of the GNU Affero +General Public License as published by the Free Software Foundation, +either version 3 of the License, or (at your option) any later +version. +.PP +zilasm is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. +.PP +You should have received a copy of the GNU General Public License +along with zilasm. If not, see . +.SH SEE ALSO +.BR zilc(1)