18 lines
257 B
Go
18 lines
257 B
Go
package s19
|
|
|
|
type SRecord struct {
|
|
Type string
|
|
Count int
|
|
Address uint32
|
|
Data []byte
|
|
}
|
|
|
|
type AddressRange struct {
|
|
// for internal access
|
|
SliceStart uint32
|
|
SliceEnd uint32
|
|
//
|
|
StartAddress uint32
|
|
EndAddress uint32
|
|
Size uint32
|
|
}
|