diskii/data/data.go

22 lines
579 B
Go
Raw Normal View History

package data
2021-06-26 02:33:11 +00:00
import _ "embed"
2021-06-26 02:33:11 +00:00
// DOS 3.3 Master Disk.
//go:embed disks/dos33mst.dsk
var DOS33master_dsk []byte
2021-06-26 02:33:11 +00:00
// John Brooks' update to ProDOS.
// Website: https://prodos8.com
// Announcements: https://www.callapple.org/author/jbrooks/
//go:embed disks/ProDOS_2_4_2.dsk
var ProDOS242_dsk []byte
2021-06-26 02:33:11 +00:00
// The new ProDOS sector 0, used on and after the IIGS System 4.0.
//go:embed boot/prodos-new-boot0.bin
var ProDOSNewBootSector0 []byte
2021-06-26 02:33:11 +00:00
// The old ProDOS sector 0, used before the IIGS System 4.0 system disk.
//go:embed boot/prodos-old-boot0.bin
var ProDOSOldBootSector0 []byte