Merge remote-tracking branch 'origin/main'

This commit is contained in:
2026-05-27 20:31:41 +02:00
8 changed files with 69 additions and 35 deletions

View File

@@ -22,7 +22,7 @@ struct CHIP8
keyboard_map: Array
func chip8_create[] : CHIP8
c := new CHIP8
c := new* CHIP8
c->memory = mem.alloc(4096)
mem.zero(c->memory, 4096)
c->display = mem.alloc(64*32)