2023-12-03 00:27:07 -05:00
|
|
|
//
|
|
|
|
// Created by william on 12/2/23.
|
|
|
|
//
|
|
|
|
|
2024-01-06 14:27:09 -05:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include "types.h"
|
|
|
|
#include "system.h"
|
|
|
|
|
2023-12-03 00:27:07 -05:00
|
|
|
#ifndef NESEMULATOR_ROM_H
|
|
|
|
#define NESEMULATOR_ROM_H
|
|
|
|
|
2023-12-23 16:35:23 -05:00
|
|
|
// The size of the header in a ROM file, in bytes
|
|
|
|
#define ROM_HEADER_SIZE 16
|
|
|
|
// The size of the trainer in a ROM file, in bytes
|
|
|
|
#define ROM_TRAINER_SIZE 512
|
|
|
|
|
2023-12-03 00:27:07 -05:00
|
|
|
typedef struct {
|
2023-12-23 16:35:23 -05:00
|
|
|
byte *prg_rom;
|
|
|
|
byte *chr_rom;
|
|
|
|
void *header;
|
2023-12-03 00:27:07 -05:00
|
|
|
} Rom;
|
|
|
|
|
2024-01-06 14:27:09 -05:00
|
|
|
/**
|
|
|
|
* Loads a ROM from a specified file path.
|
|
|
|
*
|
|
|
|
* @param path The file path
|
|
|
|
* @param rom ROM
|
|
|
|
* @return A boolean indicating a success (true) or an error.
|
|
|
|
*/
|
|
|
|
bool rom_load(char *path, System *system);
|
2023-12-03 00:27:07 -05:00
|
|
|
|
|
|
|
#endif //NESEMULATOR_ROM_H
|