You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 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
}