Files
goboy/cpu/operations/read_byte.go
2025-06-30 14:35:24 +02:00

11 lines
154 B
Go

package operations
func GetLowerByte(value uint16) byte {
return (byte)(value)
}
func GetHigherByte(value uint16) byte {
return (byte)(value >> 8)
}