mirror of
https://github.com/macocianradu/goboy.git
synced 2026-03-18 21:10:07 +00:00
6 lines
61 B
Go
6 lines
61 B
Go
package operations
|
|
|
|
func Shift(r1 *byte) {
|
|
*r1 = *r1 << 1
|
|
}
|