[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Ugh. I just DO not understand the Disk ][.
On Jan 4, 12:51 am, Steve Nickolas
<lyricalnan...@usotsuki.hoshinet.org> wrote:
> On Tue, 3 Jan 2012, Antoine Vignau wrote:
> > If you read French, visit the hackzapple.com site, or read Beneath
> > Apple (Pro)DOS, and you will get plenty of (maybe too much)
> > information,
>
> > av
>
> Obviously... I've pored through the Beneath books and just have failed to
> grasp it. :( (I...dunno. I...just can't seem to understand it. I read
> and read and...it just doesn't come to me. x.x)
>
> I find the "Protection malefique" section of HackZapple interesting
> reading and sometimes repack games I find there. (Though some of the
> games are uploaded to like Mediafire or something and got zapped. Not
> yours...blk's.)
>
> -uso.
I've had to suffer through emulating a disk drive also. It's tricky
stuff, but I can help you if you need -- also I've updated my JACE
code to comment the inner-workings of the drive a little more so it
might help to look at an alternate implementation. I updated my code
to speed up the emulator to max when disk reads are active, since
there's no possibility that anything else can be interleaved with disk
access and it would otherwise take forever (well, like it would on a
real machine)
Controller and I/O implementation
http://java-ace.svn.sourceforge.net/viewvc/java-ace/jace/src/jace/hardware/CardDiskII.java?revision=130&view=markup
Drive implementation (deals with the emulated disk image more
directly)
http://java-ace.svn.sourceforge.net/viewvc/java-ace/jace/src/jace/hardware/DiskIIDrive.java?revision=92&view=markup
-B