
TRANSFERRING THE APPLE //E ROMS

  1. First save the C100-CFFF internal ROM's:

     ]CALL -151
     *C00A
     *C007
     *9000<C100.CFFFM
     (type ctrl+c, return)
     ]BSAVE INTCROM,A$9000,L$F00

  2. Next save the D000-FFFF internal ROM's:

     ]CALL -151
     *C082
     (type ctrl+c, return)
     ]BSAVE INTDROM,A$D000,L$3000

  3. Next save the slot ROM's:

     ]PR#3
     ]BSAVE SLOTCROM,A$C100,L$F00

  4. Transfer the disk to a PC disk image.

  5. Extract the files INTCROM, INTDROM, and SLOTCROM from the disk image.
     Be sure to strip of the binary header, which contains the address and
     length of the data, if your extraction program does not do it for you.

  6. Write a simple program that concatenates the three files into one big
     (20 kilobyte) file as follows:

     offsets $0000-$00FF: zeros
     offsets $0100-$0FFF: the contents of SLOTCROM (3840 bytes)
     offsets $1000-$10FF: zeros
     offsets $1100-$1FFF: the contents of INTCROM (3840 bytes)
     offsets $2000-$4FFF: the contents of INTDROM (16384 bytes)

