moto-flash-data/s19/types.go
2025-01-20 13:10:35 +01:00

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
}