mirror of
https://github.com/taigrr/gopher-os
synced 2025-01-18 04:43:13 -08:00
13 lines
206 B
Go
13 lines
206 B
Go
package mem
|
|
|
|
// Size represents a memory block size in bytes.
|
|
type Size uint64
|
|
|
|
// Common memory block sizes.
|
|
const (
|
|
Byte Size = 1
|
|
Kb = 1024 * Byte
|
|
Mb = 1024 * Kb
|
|
Gb = 1024 * Mb
|
|
)
|