[Coco] CoCo3 and OS-9

Stephen H. Fischer SFischer1 at MindSpring.com
Fri Sep 23 01:34:47 EDT 2005


Tony Schountz wrote:
> On Sep 21, 2005, at 9:06 AM, Andrew wrote:
>
>> All,
>>
>> With all this talk about the OS-9 and such, I thought I would ask,
>> partially for my benefit as well as for others who may not have
>> given it as much thought as myself - how do you set up a real (and/
>> or emulated) CoCo with OS-9?
>
> If you want to use MESS, I have a boot disk image and hard disk image
> on my Pascal web page:
>
> http://
>
> Download these, the 6309 ROM image and MESS, and you should be able
> to boot NitrOS-9 in relatively short order. You'll still need to
> populate the virtual hard disk with apps and your other files as it
> is pretty much bare-bones.

Hi,

As I could not understand why the Emulator Hard Disk Image was so
Large (27 Megs - HUH), I wasted the download time to take a look at it.

Most of the size of the image appears to consist of web pages, not CoCo
related as far as I could tell with a quick scan.

I wonder if there is any personal data in the file. To me it appears to
be a dangerous thing to make available to one and all.

If you delete all the unnecessary files and then zero the unused space
using the following program you will find that the file ZIPs up to a
much smaller size.

Stephen H. Fischer

If you write a simple program to write to any file $00 bytes, a program that
never stops until it fills the emulator disk.

Then when you delete the file, you will find that ZIP and other archivers
will compress the file tremendously!
Change /D3 to your HD.
*******************************************

PROCEDURE ZeroDisk
BASE 0
DIM i
DIM Sector(256):BYTE
DIM FFDisk:BYTE
DIM NotFull:BOOLEAN
FOR i=0 TO 255
Sector(i)=0
NEXT i
OPEN #FFDisk,"/D3/ZeroDisk":WRITE
NotFull=TRUE
WHILE NotFull DO
PUT #FFDisk,Sector
ENDWHILE
END "ZeroDisk"
*******************************************







More information about the Coco mailing list