more work

This commit is contained in:
2024-10-20 06:12:12 -04:00
parent f6751557c6
commit e927f6785f
7 changed files with 694 additions and 539 deletions
+2 -2
View File
@@ -52,8 +52,8 @@ fn main() -> eframe::Result {
ui.label("display of file here");
ui.vertical(|ui| {
display_instruction(0x010, &Chip8CpuInstructions::AddIVx(0x01), ui);
display_instruction(0x012, &Chip8CpuInstructions::RndVxByte(0x01, 0x02), ui);
display_instruction(0x010, &Chip8CpuInstructions::ADDI(0x01), ui);
display_instruction(0x012, &Chip8CpuInstructions::RND(0x01, 0x02), ui);
});
ui.text_edit_multiline(&mut edit_space);
});