Add data/ directory and go-bindata generate cmds

This commit is contained in:
Zellyn Hunter 2017-03-19 21:55:32 -04:00
parent dc35096652
commit 118944b512
6 changed files with 305 additions and 0 deletions

12
data/README.md Normal file
View File

@ -0,0 +1,12 @@
# Embedded data files for diskii
## List of files
- ProDOS_2_4_1.dsk
John Brooks' update to ProDOS, released September 2016.
[Announcement on Call-A.P.P.L.E](http://www.callapple.org/vintage-apple-computers/apple-ii/announcing-prodos-2-4-1-for-all-apple-ii-and-compatible-computers/)
- prodos-old-boot0.bin
The old ProDOS sector 0, used before the IIGS System 4.0 system disk.
- prodos-new-boot0.bin
The new ProDOS sector 0, used on and after the IIGS System 4.0
system disk. Understands sparse PRODOS.SYSTEM files.

Binary file not shown.

Binary file not shown.

285
data/data.go Normal file

File diff suppressed because one or more lines are too long

8
generate.go Normal file
View File

@ -0,0 +1,8 @@
// This file contains the list of commands to run to re-generate
// generated files.
// Use go-bindata to embed static assets that we need.
//go:generate go-bindata -pkg data -prefix "data/" -o data/data.go data/disks data/boot
//go:generate goimports -w data/data.go
package main