From ebf2cfc94d174f9dee6b0c0aa90c149bc386ebf4 Mon Sep 17 00:00:00 2001 From: Egan Ford Date: Sat, 6 May 2017 12:22:59 -0600 Subject: [PATCH] minor readme and comment and formatting updates --- Makefile | 6 +++--- README.md | 16 ++++++++++------ c2d.c | 2 +- 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index ea2b22d..a6bf01b 100644 --- a/Makefile +++ b/Makefile @@ -65,16 +65,16 @@ barloader.textpage: barloader.text bin/text2page bin/text2page <$< >$@ gameserverclientbar.dsk: barloader.textpage gameserverclient bin/c2d Makefile - bin/c2d -b -t $< gameserverclient,800 $@ + bin/c2d -b -t $< gameserverclient,800 $@ bargrloader.textpage: bin/mandelbrotgr bin/mandelbrotgr >$@ gameserverclientbargr.dsk: bargrloader.textpage gameserverclient bin/c2d Makefile - bin/c2d -b -g -r 23 -t $< gameserverclient,800 $@ + bin/c2d -b -g -r 23 -t $< gameserverclient,800 $@ gameserverclient.dsk: gameserverclient bin/c2d Makefile - bin/c2d gameserverclient,800 $@ + bin/c2d gameserverclient,800 $@ dsk: gameserverclient.dsk gameserverclientbar.dsk gameserverclientbargr.dsk diff --git a/README.md b/README.md index 08574a6..744d8ee 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,15 @@ > > Weishaar, Tom. *Running without filenames*. Open-Apple Jan. 1985 Vol. 1, No. 0: p. 7 () +`c2d` early history: http://macgui.com/usenet/?group=1&id=254902#msg + ### Features +* `$800-$B6FF` available for binary code. + * After load `$B700-$BFFF` free. * Platforms tested: - * 32-bit/64-bit x86 OS/X. + * 32-bit/64-bit x86 OS/X and MacOS. * 32-bit x86 Windows/MinGW. @@ -33,7 +37,7 @@ Unix/Linux: *or* -OS/X, Linux, Cygwin: +MacOS, OS/X, Linux, Cygwin: gcc -Wall -Wno-missing-braces -I. -O3 -o c2d c2d.c -lm gcc -Wall -O3 -o bin/text2page text2page.c -lm @@ -135,7 +139,7 @@ page2text gameserverclient.text ### Testing -Automated testing is only supported on OS/X and requires the following: +Automated testing is only supported on MacOS (OS/X) and requires the following: * Virtual ][ () @@ -144,9 +148,9 @@ Automated testing is only supported on OS/X and requires the following: To test, type: ``` -make test # OS/X only -make disttest # OS/X and Windows -make fulltest # OS/X, Windows, and Virtual ][ +make test # MacOS, OS/X only +make disttest # MacOS, OS/X and Windows +make fulltest # MacOS, OS/X, Windows, and Virtual ][ ``` > If Virtual ][ crashes while testing, just `make fulltest` again diff --git a/c2d.c b/c2d.c index 3e464d7..91655aa 100644 --- a/c2d.c +++ b/c2d.c @@ -18,7 +18,7 @@ License: Description: This small utility will read Apple II binary and monitor text files and - output a DOS ordered dsk image that will boot your code quickly. + output a DOS ordered dsk image that will boot your code quickly. Features: * Apple II+, IIe support.