leemorgan / Chip8

A CHIP-8 emulator for Mac.
MIT License
2 stars 1 forks source link

add reset menu option #2

Open DealPete opened 6 years ago

DealPete commented 6 years ago

Hi Lee,

I changed chip8.c so that it loads the ROM file into the array rom_data instead of directly into memory. chip8_init() now transfers the rom_data into memory at address 0x200. Thus, instead of having to reload the ROM file each time, the reset routine can just call chip8_init().

I also removed the Edit menu, because it didn't seem to do anything (I'm assuming it got placed there by default).

Cheers, Peter