NAME
	pflags	- show/change programflags in header


SYNOPSIS
	pflags [-v] [-h] [-p] [[-|+]fload] [[-|+]fmem] [[-|+]fram]
		[[+|-]private] [+global] [+super] [+read] {file ...}

DESCRIPTION
	Pflags is a tool to modify or just show the program flags fixed in
	the gemdos program header.
	You may use it from commandline or in a makefile after linking your
	sourcecode. It doesn't support setting of 'shared text', cause this
	needs a special linked file - only the linker should set this flag!
	Program flags are very dependant on TOS version and hardware.

	Options for help and info

	-v Prints version.
	
	-h Print help page and exits.
	
	-p Prints complete program header, too.

	Options for setting flags
	a '+' always sets a flag, while a '-' unsets a flag.

	[+|-]fload
	Set or unset fast load flag. The heap memory is not cleared with
	this flag. (TOS vers >= 1.04)

	[+|-]fram
	Set or unset fastram flag. This flag tells gemdos that the program
	prefers FastRam. (TT specific)

	[+|-]fmem
	Set or unset malloc() from fastram flag. This tells gemdos that
	Malloc() should use FastRam whemever possible or never. (TT specific)

	[+|-]private
	Unsets all propably set protection flags! The program's memory will
	be private. (MiNT and 68030)

	+global
	Sets global flag. Free access to the prg's memory for all other
	processes.  (MiNT and 68030) 

	+super
	Sets super flag. Free (global) access to the prg's memory for all
	other processes in super mode.

	+read
	The prg's memory is private, no write access for other processes. 
	But all have free access for reading it. (MiNT and 68030)

AUTHOR
	pflags  version 0.2  by jerry g. geiger 93/5
		<jerry@zelator.in-berlin.de>

NOTE
	There is no warranty for this program. It is Freeware, and part of
	some SOZOBON distribution. It may not be sold, or added to any
	commercial software!
