mirror of
https://github.com/zellyn/diskii.git
synced 2025-02-16 10:32:10 +00:00
26 lines
721 B
Go
26 lines
721 B
Go
package data
|
|
|
|
import _ "embed"
|
|
|
|
// DOS 3.3 Master Disk.
|
|
//go:embed disks/dos33master.dsk
|
|
var DOS33master_dsk []byte
|
|
|
|
// DOS 3.3 Master Disk, as a .woz file.
|
|
//go:embed disks/dos33master.woz
|
|
var DOS33master_woz []byte
|
|
|
|
// John Brooks' update to ProDOS.
|
|
// Website: https://prodos8.com
|
|
// Announcements: https://www.callapple.org/author/jbrooks/
|
|
//go:embed disks/ProDOS_2_4_2.po
|
|
var ProDOS242_po []byte
|
|
|
|
// The new ProDOS sector 0, used on and after the IIGS System 4.0. Understands sparse PRODOS.SYSTEM files.
|
|
//go:embed boot/prodos-new-boot0.bin
|
|
var ProDOSNewBootSector0 []byte
|
|
|
|
// The old ProDOS sector 0, used before the IIGS System 4.0 system disk.
|
|
//go:embed boot/prodos-old-boot0.bin
|
|
var ProDOSOldBootSector0 []byte
|