minor readme and comment and formatting updates

This commit is contained in:
Egan Ford 2017-05-06 12:22:59 -06:00
parent 5e85697fe4
commit ebf2cfc94d
3 changed files with 14 additions and 10 deletions

View File

@ -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

View File

@ -6,11 +6,15 @@
>
> Weishaar, Tom. *Running without filenames*. Open-Apple Jan. 1985 Vol. 1, No. 0: p. 7 (<http://apple2online.com/web_documents/Open%20Apple%20Vol1No00.pdf>)
`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.textpage >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 ][ (<http://http://www.virtualii.com/>)
@ -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

2
c2d.c
View File

@ -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.