14 lines
342 B
Go
14 lines
342 B
Go
package tape
|
|
|
|
// MaxStructureLength determines how long a TAPE data structure can be. This
|
|
// applies to:
|
|
//
|
|
// - OTA
|
|
// - SBA/LBA
|
|
// - KTV
|
|
//
|
|
// By default it is set at 2^20 (about a million).
|
|
// You shouldn't need to change this. If you do, it should only be set once at
|
|
// the start of the program.
|
|
var MaxStructureLength = 1024 * 1024
|