Program:	Normal Text and Inverse Text
Version:	1.0
Author:		Alan Johnson (Master_M or EnforcerX on IRC)
 Webpage:	http://www.bigfoot.com/~mastermind5
 E-mail:	benjamin99@juno.com
 ICQ:		11341114 (My ICQ is down now)
First Released:	8/6/98
Format:		Assembly
Size:		33 each (Not including run programs)

Normal Text and Inverse Text are programs I have made so you can use
inversed text in all you BASIC programmers too lazy to learn assembly :)

I made these programs because ever since I started to learn assembly, I
have wondered why there was no inverse text function.  Well now there
is!  Send textchng.83g to your calc to install it.  To inverse the
text simply run the program INVSTEXT from your BASIC program or from
the command line.  To set it back to normal run NORMTEXT.

Note:  If you run INVSTEXT without running NORMTEXT, *everything* will
be inversed.  Some people might like that, some might not.  Do whatever
you want.  Have fun with it

I don't know what I could do to make this program better.  It's totally
optimized.

Thanks to James Matthews tutorials for teaching me most of what I know
about ASM today.

-----------------------------------------------------------------------

For you ASM beginers wondering how I did it, here is the source
(incredibly small, huh?)

BASIC programers:  This may look complicated but it isn't.

-----------------------------------------------------------------------

ZNRMTEXT:

-----------------------------------------------------------------------

.NOLIST
#include "master_m.inc"		; Just has offsets for textInverse
.LIST

	res	textInverse,(iy+textFlags)
	ret
.end
end

-----------------------------------------------------------------------

ZINVTEXT:

-----------------------------------------------------------------------

.NOLIST
#include "master_m.inc"		; Just has offsets for textInverse
.LIST

	set	textInverse,(iy+textFlags)
	ret
.end
end
