2016-08-27 22:17:40 +00:00
|
|
|
//
|
|
|
|
// PRG.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 27/08/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "PRG.hpp"
|
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
#include <sys/stat.h>
|
2016-09-29 23:39:13 +00:00
|
|
|
#include "../Encodings/CommodoreROM.hpp"
|
2016-08-27 22:17:40 +00:00
|
|
|
|
2016-08-27 22:26:51 +00:00
|
|
|
using namespace Storage::Cartridge;
|
2016-08-27 22:17:40 +00:00
|
|
|
|
2016-08-28 16:20:40 +00:00
|
|
|
PRG::PRG(const char *file_name)
|
2016-08-27 22:17:40 +00:00
|
|
|
{
|
|
|
|
struct stat file_stats;
|
|
|
|
stat(file_name, &file_stats);
|
|
|
|
|
|
|
|
// accept only files sized 1, 2, 4 or 8kb
|
|
|
|
if(
|
|
|
|
file_stats.st_size != 0x400 + 2 &&
|
|
|
|
file_stats.st_size != 0x800 + 2 &&
|
|
|
|
file_stats.st_size != 0x1000 + 2 &&
|
|
|
|
file_stats.st_size != 0x2000 + 2)
|
|
|
|
throw ErrorNotROM;
|
|
|
|
|
|
|
|
// get the loading address, and the rest of the contents
|
|
|
|
FILE *file = fopen(file_name, "rb");
|
|
|
|
|
|
|
|
int loading_address = fgetc(file);
|
|
|
|
loading_address |= fgetc(file) << 8;
|
|
|
|
|
2016-08-28 16:20:40 +00:00
|
|
|
size_t data_length = (size_t)file_stats.st_size - 2;
|
|
|
|
std::vector<uint8_t> contents(data_length);
|
|
|
|
fread(&contents[0], 1, (size_t)(data_length), file);
|
2016-08-27 22:17:40 +00:00
|
|
|
fclose(file);
|
|
|
|
|
|
|
|
// accept only files intended to load at 0xa000
|
|
|
|
if(loading_address != 0xa000)
|
|
|
|
throw ErrorNotROM;
|
|
|
|
|
|
|
|
// also accept only cartridges with the proper signature
|
2016-09-29 23:39:13 +00:00
|
|
|
if(!Storage::Cartridge::Encodings::CommodoreROM::isROM(contents))
|
2016-08-27 22:17:40 +00:00
|
|
|
throw ErrorNotROM;
|
|
|
|
|
2016-08-28 16:20:40 +00:00
|
|
|
_segments.emplace_back(0xa000, 0xa000 + data_length, std::move(contents));
|
2016-08-27 22:17:40 +00:00
|
|
|
}
|