1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-07-05 03:29:00 +00:00
rk65c02/test/utils.c
Radosław Kujawa 9122615df4 Split function determining full path to ROM.
Adjust bus tests to this change.
2017-01-27 12:32:12 +01:00

41 lines
724 B
C

#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <atf-c.h>
#include "bus.h"
#include "rk65c02.h"
#include "utils.h"
const char *
rom_path(const char *name, const atf_tc_t *tc)
{
char *rompath;
const char *srcdir;
rompath = malloc(PATH_MAX);
srcdir = atf_tc_get_config_var(tc, "srcdir");
strcpy(rompath, srcdir);
strcat(rompath, "/");
strcat(rompath, name);
return rompath;
}
bool
rom_start(rk65c02emu_t *e, const char *name, const atf_tc_t *tc)
{
const char *path;
path = rom_path(name, tc);
printf("%s\n", path);
e->regs.PC = ROM_LOAD_ADDR;
if(!bus_load_file(e->bus, ROM_LOAD_ADDR, path))
return false;
rk65c02_start(e);
return true;
}