aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaditya Dhruv <[email protected]>2024-10-06 12:26:51 -0500
committerAaditya Dhruv <[email protected]>2025-02-05 22:22:09 -0600
commitde481cb15b7bcfdaafdb688776426c54db6258e9 (patch)
tree44cce1dcf19a5849477a176e0248e9be548c50c5
parent9e085ccd25a74a330cf472678f6a8cf52c2ee865 (diff)
Add todo.md
-rw-r--r--src/cpu/chip.rs19
-rw-r--r--todo.md48
2 files changed, 62 insertions, 5 deletions
diff --git a/src/cpu/chip.rs b/src/cpu/chip.rs
index fe869d3..cf82504 100644
--- a/src/cpu/chip.rs
+++ b/src/cpu/chip.rs
@@ -137,7 +137,7 @@ impl Chip {
(0b00, 0b011, 0b000) => { self.jr() }, //JR
(0b00, 0b100..=0b111, 0b000) => { self.jr_cond(oct2) }, //JR conditonal
(0b00,0b000|0b010|0b100|0b110, 0b001) => { self.ld_xx_rr(oct2) }, //LD r16, u16
- (0b00,0b001|0b011|0b101|0b111, 0b001) => { self.add_hl_rr(oct22) }, //ADD HL, r16
+ (0b00,0b001|0b011|0b101|0b111, 0b001) => { self.add_hl_rr(oct2) }, //ADD HL, r16
(0b00,0b000|0b010|0b100|0b110, 0b010) => { }, //LD (r16), A
(0b00,0b001|0b011|0b101|0b111, 0b010) => { }, //LD A, (r16)
(0b00,0b000|0b010|0b100|0b110, 0b011) => { }, //INC r16
@@ -184,8 +184,17 @@ impl Chip {
//Add register r16 value to HL
fn add_hl_rr(&mut self, register: u8) {
- self.h = self.byte3;
- self.l = self.byte2;
+ let r16 = match register {
+ 0b001 => { (self.b as u16) << 8 | self.c as u16 },
+ 0b011 => { (self.d as u16) << 8 | self.e as u16 },
+ 0b101 => {(self.h as u16) << 8 | self.l as u16 },
+ 0b111 => { self.sp },
+ _ => { panic!("Unknown condition {}", register) }
+ };
+
+ self.h += (r16 >> 8) as u8;
+ self.l += (r16 & 0x00ff) as u8;
+
//Additions reset the n flag
self.flags.n = 0;
@@ -250,14 +259,14 @@ impl Chip {
fn ldd_hl_a(&mut self) {
let mut pc = ((self.h as u16) << 8) as u16 | self.l as u16;
- self.write_memory(pc as usize, self.a);
+ self.write_memory(pc, self.a);
pc -= 1;
self.h = (pc >> 8) as u8;
self.l = (pc << 8 >> 8) as u8;
}
fn adc_r(&mut self, r8: u8) {
- self.a += (self.flags.carry + r8);
+ self.a += self.flags.carry + r8;
}
fn xor_r(&mut self, r8: u8) {
let value = match r8 {
diff --git a/todo.md b/todo.md
new file mode 100644
index 0000000..19ea8db
--- /dev/null
+++ b/todo.md
@@ -0,0 +1,48 @@
+### Emulator features
+- Tracelogger
+- Support for cheats
+- Rewind/save state functionality
+- Memory editor
+- Sprite/background viewer
+- Support for shaders to change the video output
+- Scripting support
+- TAS replay support
+
+
+### Assembler & Engine Ideas
+
+Rust based assembler
+Rust/C/C++ Engine
+
+#### Structure
+
+src
+|
+main.rs - inits
+chip/|
+ |
+ |
+ gameboy.rs - loop, Opcode, buffers etc.
+ dassm.rs - wrapper struct for gameboy
+graphics/|
+ |
+ |
+ graphics.rs - generic lib which is called in main.rs
+ sdl2.rs - Using sdl2 as the backend
+ optional.rs - some other backend
+input/|
+ |
+ |
+ input.rs generic lib called in main.rs
+ sdl2.rs - sdl2 input
+
+
+### Implementation Order
+
+1. CPU
+2. Input
+3. Interrupts
+4. Graphics
+5. Audio
+6. Peripherals
+7. Engine