mirror of
https://github.com/macocianradu/goboy.git
synced 2026-03-18 21:10:07 +00:00
15 lines
144 B
Go
15 lines
144 B
Go
package operations
|
|
|
|
func DEC(r1 *byte) {
|
|
*r1--
|
|
}
|
|
|
|
func DEC16(r1 *byte, r2 *byte) {
|
|
if *r2 == 0x00 {
|
|
*r2 = 0xFF
|
|
*r1--
|
|
return
|
|
}
|
|
*r2--
|
|
}
|