Compare commits

...

3 Commits

Author SHA1 Message Date
Marcio T 4793ffc0d8 Adopt standard GPL header. 2022-03-08 06:57:14 -07:00
Marcio T b6fa1cad7a Updated README 2022-03-06 17:41:39 -07:00
Marcio T 7d96b63ef0
Update README.md 2022-02-13 18:04:13 -07:00
3 changed files with 43 additions and 33 deletions

View File

@ -29,12 +29,14 @@ Power Macintosh G3, released in 1997.
It has been tested in on the following environments:
| Computer | Memory | System | Drive | Firmware |
|------------------- |--------|--------|-------------------------|----------|
| Macintosh Plus | 4MB | 7.0.1 | Zip Plus 100 Ext. SCSI | J.66 |
| PowerBook 3400c | 144MB | 8.6 | Zip 100 Ext. SCSI | E.08 |
| Power Macintosh G3 | 256MB | 9.2.1 | Zip 100 Ext. SCSI | C.22 |
| Power Macintosh G3 | 256MB | 9.2.1 | Zip 100 Int. SCSI | J.03 |
| Computer | Memory | System | Drive | Firmware |
|------------------- |--------|--------|-------------------------------------|----------|
| Macintosh Plus | 4MB | 7.0.1 | Zip Plus 100 Ext. SCSI | J.66 |
| PowerBook 3400c | 144MB | 8.6 | Zip 100 Ext. SCSI | E.08 |
| PowerBook 3400c | 144MB | 8.6 | Jaz 2GB Ext. SCSI w/ 1GB media | E.17 |
| PowerBook 3400c | 144MB | 8.6 | Jaz 2GB Ext. SCSI w/ 2GB media | E.17 |
| Power Macintosh G3 | 256MB | 9.2.1 | Zip 100 Ext. SCSI | C.22 |
| Power Macintosh G3 | 256MB | 9.2.1 | Zip 100 Int. SCSI | J.03 |
What will not work or is missing:
@ -66,12 +68,12 @@ You can help this project in one of the following ways:
* Star this project on GitHub to show your support!
* Sign up to [beta testing in the discussion forum]!
* Donate a 1 or 2GB Jaz cartridge for testing (I have a 2GB SCSI Jaz drive, but no cartridges!).
* Become a GitHub sponsor to help fund my various open-source projects!
Other Vintage Macintosh Stuff
-----------------------------
* [MiniVNC]: A remote desktop server for vintage Macintoshes!
* [ScreenChooser]: A dynamic background changer for vintage Macintoshes!
* [Retroweb Vintage Computer Museum]: A web-based museum of vintage computers, including the Macintosh!
@ -153,6 +155,7 @@ Credits
* Thank you to [Stone Table Software] for providing the tool I used to convert the Windows RTF docs into SimpleText...
* ...and to the Internet Archive's Wayback Machine for allowing me to access it long after the website was shut down!
* Thank you to Thomas Tempelmann sharing his [LaunchLib code] which I used to open the documents
* Thank you to Grant Hutchinson and Nikola Biscan for sending me 1GB and 2GB Jaz cartridges for testing.
The Original TIP For Windows
----------------------------
@ -189,5 +192,6 @@ his code in this repository with his permission.
[ScreenChooser]: https://archive.org/details/screen-chooser
[YouTube]: https://youtu.be/vtBlOaG2pNw
[Retroweb Vintage Computer Museum]: http://retroweb.maclab.org
[MiniVNC]: https://github.com/marciot/mac-minivnc

View File

@ -1,16 +1,19 @@
/************************************************************
pstring.c
AUTHOR: Marcio Luis Teixeira
CREATED: 9/17/94
LAST REVISION: 11/25/21
(c) 1994-1995 by Marcio Luis Teixeira.
All rights reserved.
*************************************************************/
/****************************************************************************
* Common Libraries (c) 1994 Marcio Teixeira *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program 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. *
* *
* To view a copy of the GNU General Public License, go to the following *
* location: <http://www.gnu.org/licenses/>. *
****************************************************************************/
#include "pstring.h"
#include <ctype.h>

View File

@ -1,16 +1,19 @@
/************************************************************
pstring.h
AUTHOR: Marcio Luis Teixeira
CREATED: 9/17/94
LAST REVISION: 11/25/21
(c) 1994-1995 by Marcio Luis Teixeira.
All rights reserved.
*************************************************************/
/****************************************************************************
* Common Libraries (c) 1994 Marcio Teixeira *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program 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. *
* *
* To view a copy of the GNU General Public License, go to the following *
* location: <http://www.gnu.org/licenses/>. *
****************************************************************************/
short pstrlen( unsigned char *str );
void psetlen( unsigned char *str, short len );