mirror of
https://github.com/macocianradu/goboy.git
synced 2026-03-18 21:10:07 +00:00
71 lines
1.8 KiB
Go
71 lines
1.8 KiB
Go
package cpu
|
|
|
|
import (
|
|
"radu.macocian.me/goboy/cpu/operations"
|
|
"radu.macocian.me/goboy/memory"
|
|
)
|
|
|
|
type op_context struct {
|
|
cpu CPU_struct
|
|
addr uint
|
|
}
|
|
|
|
func Noop(context op_context) {
|
|
return
|
|
}
|
|
|
|
// LDBCd16 Load the 2 bytes of immediate data into register pair BC.
|
|
func LDBCd16(context op_context) {
|
|
operations.LD(&context.cpu.C, memory.Read8(context.addr))
|
|
operations.LD(&context.cpu.B, memory.Read8(context.addr+8))
|
|
}
|
|
|
|
// LDBCa Store the contents of register A in the memory location specified by register pair BC.
|
|
func LDBCa(context op_context) {
|
|
operations.LDInMemory8(context.cpu.BC(), context.cpu.A)
|
|
return
|
|
}
|
|
|
|
// INCBC Increment the contents of register pair BC by 1.
|
|
func INCBC(context op_context) {
|
|
operations.INC16(&context.cpu.B, &context.cpu.C)
|
|
return
|
|
}
|
|
|
|
// INCB Increment the contents of register B by 1.
|
|
func INCB(context op_context) {
|
|
operations.INC(&context.cpu.B)
|
|
|
|
context.cpu.SetZF(context.cpu.B == byte(0))
|
|
context.cpu.SetNF(false)
|
|
}
|
|
|
|
// DECB Decrement the contents of register B by 1.
|
|
func DECB(context op_context) {
|
|
operations.DEC(&context.cpu.B)
|
|
|
|
context.cpu.SetZF(context.cpu.B == byte(0))
|
|
context.cpu.SetNF(true)
|
|
}
|
|
|
|
// LD8B Load the 8-bit immediate operand d8 into register B.
|
|
func LD8B(context op_context) {
|
|
operations.LD(&context.cpu.B, memory.Read8(context.addr))
|
|
}
|
|
|
|
// RLCA Rotate the contents of register A to the left. The contents of bit 7 are placed in both the CY flag and bit 0 of register A.
|
|
func RLCA(context op_context) {
|
|
a7 := context.cpu.A>>7 == 1
|
|
operations.Shift(&context.cpu.A)
|
|
|
|
context.cpu.SetZF(false)
|
|
context.cpu.SetNF(false)
|
|
context.cpu.SetHF(false)
|
|
context.cpu.SetCF(a7)
|
|
}
|
|
|
|
// LDA16 Store the lower byte of stack pointer SP at the address specified by the 16-bit immediate operand a16, and store the upper byte of SP at address a16 + 1.
|
|
func LDA16(context op_context) {
|
|
|
|
}
|