mirror of
https://github.com/macocianradu/goboy.git
synced 2026-03-18 21:10:07 +00:00
11 lines
154 B
Go
11 lines
154 B
Go
package operations
|
|
|
|
func GetLowerByte(value uint16) byte {
|
|
return (byte)(value)
|
|
}
|
|
|
|
func GetHigherByte(value uint16) byte {
|
|
return (byte)(value >> 8)
|
|
}
|
|
|