2021-08-01 03:49:22 +00:00
|
|
|
// Package data is a bunch of go:embed embedded files.
|
2017-03-20 01:55:32 +00:00
|
|
|
package data
|
|
|
|
|
2021-08-01 17:22:04 +00:00
|
|
|
import _ "embed" // Mark this file as using embeds.
|
2017-03-20 01:55:32 +00:00
|
|
|
|
2021-08-01 03:14:55 +00:00
|
|
|
// DOS33masterDSK is a DOS 3.3 Master Disk image.
|
2021-07-12 20:27:13 +00:00
|
|
|
//go:embed disks/dos33master.dsk
|
2021-08-01 03:14:55 +00:00
|
|
|
var DOS33masterDSK []byte
|
2017-03-20 01:55:32 +00:00
|
|
|
|
2021-08-01 03:14:55 +00:00
|
|
|
// DOS33masterWOZ is a DOS 3.3 Master Disk, as a .woz file.
|
2021-07-12 20:27:13 +00:00
|
|
|
//go:embed disks/dos33master.woz
|
2021-08-01 03:14:55 +00:00
|
|
|
var DOS33masterWOZ []byte
|
2021-07-12 20:27:13 +00:00
|
|
|
|
2021-08-01 03:14:55 +00:00
|
|
|
// ProDOS242PO is John Brooks' update to ProDOS.
|
2021-06-26 02:33:11 +00:00
|
|
|
// Website: https://prodos8.com
|
|
|
|
// Announcements: https://www.callapple.org/author/jbrooks/
|
2021-07-12 20:27:13 +00:00
|
|
|
//go:embed disks/ProDOS_2_4_2.po
|
2021-08-01 03:14:55 +00:00
|
|
|
var ProDOS242PO []byte
|
2017-03-20 01:55:32 +00:00
|
|
|
|
2021-08-01 03:14:55 +00:00
|
|
|
// ProDOSNewBootSector0 is the new ProDOS sector 0, used on and after the IIGS System 4.0. Understands sparse PRODOS.SYSTEM files.
|
2021-06-26 02:33:11 +00:00
|
|
|
//go:embed boot/prodos-new-boot0.bin
|
|
|
|
var ProDOSNewBootSector0 []byte
|
2017-03-20 01:55:32 +00:00
|
|
|
|
2021-08-01 03:14:55 +00:00
|
|
|
// ProDOSOldBootSector0 is the old ProDOS sector 0, used before the IIGS System 4.0 system disk.
|
2021-06-26 02:33:11 +00:00
|
|
|
//go:embed boot/prodos-old-boot0.bin
|
|
|
|
var ProDOSOldBootSector0 []byte
|