standard_file.go 280 B

12345678910111213
  1. package mz700_tape_wav_gen
  2. type StandardTapeFile struct {
  3. FileAttribute byte
  4. Filename string
  5. LoadAddress uint16
  6. ExecuteAfterLoad bool
  7. ExecuteAddress uint16
  8. IsStringComment bool
  9. StringComment string
  10. BinaryComment []byte
  11. File []byte
  12. }