added cartridge loading

This commit is contained in:
Lauchmelder 2021-10-20 23:11:08 +02:00
parent 5aa8a64871
commit abb9b2e54a
5 changed files with 68 additions and 6 deletions

View file

@ -7,7 +7,8 @@ struct Bus;
struct Cartridge
{
Byte* memory;
Byte* prg_rom;
Byte* chr_rom;
struct Bus* bus;
};