oboy/src/cpu.ml

198 lines
5.0 KiB
OCaml

open Printf
(** http://bgb.bircd.org/pandocs.htm#cpuregistersandflags
http://gameboy.mongenel.com/dmg/lesson1.html *)
type registers = {
mutable a : char; (* accumulator *)
mutable f : char; (* flags *)
mutable b : char;
mutable c : char;
mutable d : char;
mutable e : char;
mutable h : char;
mutable l : char;
mutable sp : int; (* stack pointer *)
mutable pc : int; (* program counter *)
}
type flags = {
mutable z : bool; (* zero *)
mutable n : bool; (* substraction *)
mutable h : bool; (* half-carry *)
mutable c : bool; (* carry *)
}
type t = {
reg : registers;
flag : flags;
mutable cycles : int;
}
(** http://bgb.bircd.org/pandocs.htm#powerupsequence *)
let init_registers =
{
a = '\x00';
f = '\x00';
b = '\x00';
c = '\x00';
d = '\x00';
e = '\x00';
h = '\x00';
l = '\x00';
sp = 0xFFFE;
pc = 0x0100;
}
let init_flags =
{
z = false; n = false; h = false; c = false
}
let init_cpu =
{ reg = init_registers; flag = init_flags; cycles = 0 }
let update_flag_reg cpu =
let z = if cpu.flag.z then 0b10000000 else 0 in
let n = if cpu.flag.n then 0b01000000 else 0 in
let h = if cpu.flag.h then 0b00100000 else 0 in
let c = if cpu.flag.c then 0b00010000 else 0 in
cpu.reg.f <- char_of_int @@ z + n + h + c
let inc_pc cpu count =
cpu.reg.pc <- cpu.reg.pc + count
let inc_cycles cpu count =
cpu.cycles <- cpu.cycles + count
let merge_bytes low high =
(int_of_char high) * 256 + (int_of_char low)
let split_2B x =
let low = x mod 256 |> char_of_int in
let high = x / 256 |> char_of_int in
(high, low)
let read_2B m addr =
let low = Memory.get m addr in
let high = Memory.get m (addr + 1) in
merge_bytes low high
let inc_BC cpu =
let v = merge_bytes cpu.reg.c cpu.reg.b in
let low, high = split_2B (v + 1) in
cpu.reg.c <- low;
cpu.reg.b <- high
let cmp_A cpu n =
let diff = int_of_char (cpu.reg.a) - n in
cpu.flag.z <- diff = 0;
cpu.flag.n <- true;
cpu.flag.h <- diff > 0x0F || diff < 0;
cpu.flag.c <- diff > 0xFF || diff < 0;
update_flag_reg cpu
let read_pc_byte cpu mem =
let b = Memory.get mem cpu.reg.pc in
inc_pc cpu 1;
int_of_char b
let read_pc_2bytes cpu mem =
let word = read_2B mem cpu.reg.pc in
inc_pc cpu 2;
word
(**
http://imrannazar.com/GameBoy-Z80-Opcode-Map
https://github.com/sinamas/gambatte/blob/master/libgambatte/src/cpu.cpp
*)
let run cpu (mem: Memory.map) =
let opcode = read_pc_byte cpu mem |> char_of_int in
(* Hexa.print_slice cartridge.full_rom cpu.reg.pc (cpu.reg.pc + 7); *)
match opcode with
| '\x00' -> printf " NOP\n";
inc_cycles cpu 4
| '\x03' -> printf " INC \tBC\n";
inc_BC cpu;
inc_cycles cpu 8
| '\x18' -> let n = read_pc_byte cpu mem in
printf " JP\t 0x%02X\n" n;
inc_pc cpu (n - 1); inc_cycles cpu 12
| '\x20' -> let n = read_pc_byte cpu mem in
printf " JR\t NZ, 0x%02X\n" n;
if cpu.flag.z = false then
begin
inc_pc cpu (n - 1); inc_cycles cpu 12
end else
begin
inc_cycles cpu 8
end
| '\x21' -> let nn = read_pc_2bytes cpu mem in
printf " LD\t HL, 0x%04X\n" nn;
let high, low = split_2B nn in
cpu.reg.h <- high;
cpu.reg.l <- low;
inc_cycles cpu 12
| '\x28' -> let n = read_pc_byte cpu mem in
printf " JR\t Z, 0x%02X\n" n;
if cpu.flag.z = true then
begin
inc_pc cpu (n - 1); inc_cycles cpu 12
end else
begin
inc_cycles cpu 8
end
| '\x3E' -> let n = read_pc_byte cpu mem in
printf " LD \tA, 0x%02X\n" n;
cpu.reg.a <- char_of_int n;
inc_cycles cpu 8
| '\xAF' -> printf " XOR \tA, A\n";
let int_A = int_of_char cpu.reg.a in
cpu.reg.a <- char_of_int @@ int_A lxor int_A;
inc_cycles cpu 4
| '\xC0' -> printf " RET \tNZ\n";
if cpu.flag.z = false then
begin
cpu.reg.pc <- cpu.reg.sp;
inc_cycles cpu 20
end else
inc_cycles cpu 8
| '\xC3' -> let addr = read_pc_2bytes cpu mem in
printf " JP \t0x%04X\n" addr;
cpu.reg.pc <- addr; inc_cycles cpu 16
| '\xE0' -> let n = read_pc_byte cpu mem in
printf " LDH \t(0xFF%02X), A\n" n;
Memory.set mem (0xFF00 + n) cpu.reg.a;
inc_cycles cpu 12
| '\xF0' -> let n = read_pc_byte cpu mem in
printf " LDH \tA, (0xFF%02X)\n" n;
cpu.reg.a <- Memory.get mem (0xFF00 + n);
inc_cycles cpu 12
| '\xF3' -> printf " DI\n";
(* fixme *)
inc_cycles cpu 4
| '\xFE' -> let n = read_pc_byte cpu mem in
printf " CP\t0x%02X\n" n;
cmp_A cpu n;
inc_cycles cpu 8
| x -> eprintf "opcode 0x%02X\n" (int_of_char x);
failwith "Unimplemented opcode."