[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Any way to run .DSK images -directly- on Apple // ?
On May 30, 11:28 am, ol...@web.de (Oliver Schmidt) wrote:
> The general approach would be copy the running ProDOS from MAIN RAM to
> AUX RAM. Then the .dsk image would be "booted" into MAIN RAM. A rather
> small hook into the DOS 3.3 RWTS would switch to AUX RAM, call into
> ProDOS to read/write the appropriate data from/to the .dsk image(s)
> and swtich back to MAIN RAM.
Oliver, don't forget to context-switch all ProDOS / Dos 3.3 global
state like zero page, $3xx page, text-screen holes, whatever else was
there. Also you'll have to deal with interrupts that may have been
running under ProDOS, and redirected I/O vectors. Maybe bunch of other
things.
Another thing that will require some hacking is to make possible
ProDOS to run out of AUX memory - it probably likes to play with the
soft-switches a lot.
Very interesting idea, though. Good luck!