2016-06-30 09:22:32 +00:00
|
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
|
|
|
|
|
|
#include "vm.h"
|
|
|
|
#include "exp.h"
|
|
|
|
|
2016-07-01 08:28:25 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
|
2016-06-30 09:22:32 +00:00
|
|
|
#if defined(_MSC_VER)
|
2016-06-30 14:55:54 +00:00
|
|
|
#include <SDL.h>
|
2016-06-30 09:22:32 +00:00
|
|
|
#undef main
|
2016-06-30 14:55:54 +00:00
|
|
|
#else
|
|
|
|
#include <SDL/SDL.h>
|
2016-06-30 09:22:32 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
bool running = true;
|
2016-07-01 08:28:25 +00:00
|
|
|
bool debugMode = false;
|
|
|
|
bool visualMode = false;
|
2016-06-30 09:22:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An assertion the VM does.
|
|
|
|
* @param assertion If zero, the assertion failed.
|
|
|
|
* @param msg The message that should be shown when the assertion fails.
|
|
|
|
*/
|
|
|
|
void vm_assert(int assertion, const char *msg)
|
|
|
|
{
|
|
|
|
if (assertion)
|
|
|
|
return;
|
|
|
|
printf("Assertion failed: %s\n", msg);
|
|
|
|
running = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The hosts syscall implementation.
|
|
|
|
* @param process The process that calls the syscall.
|
|
|
|
* @param info Additional information for the syscall. Contains arguments and results.
|
|
|
|
*/
|
|
|
|
uint32_t vm_syscall(spu_t *process, cmdinput_t *info)
|
|
|
|
{
|
|
|
|
fprintf(stdout, "SYSCALL [%d]: (%d, %d)\n", info->info, info->input0, info->input1);
|
|
|
|
if (info->info == 0)
|
|
|
|
running = false;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The hosts hardware IO implementation.
|
|
|
|
* @param process The process that wants to do IO.
|
|
|
|
* @param info Additional information for the HWIO. Contains arguments and results.
|
|
|
|
*/
|
|
|
|
uint32_t vm_hwio(spu_t *process, cmdinput_t *info)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
spu_t mainCore;
|
|
|
|
|
|
|
|
void dump_vm()
|
|
|
|
{
|
|
|
|
printf(
|
2016-07-01 08:28:25 +00:00
|
|
|
"cp=%8X bp=%3d f=%1X [",
|
2016-06-30 09:22:32 +00:00
|
|
|
mainCore.codePointer,
|
|
|
|
mainCore.basePointer,
|
|
|
|
mainCore.flags
|
|
|
|
);
|
|
|
|
|
2016-07-01 08:28:25 +00:00
|
|
|
for (int i = 0; i < mainCore.stackPointer; i++)
|
2016-06-30 09:22:32 +00:00
|
|
|
{
|
|
|
|
printf(" %d", mainCore.stack[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
printf(" ]\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void update_vm()
|
|
|
|
{
|
|
|
|
vm_step_process(&mainCore);
|
|
|
|
|
2016-07-01 08:28:25 +00:00
|
|
|
if(debugMode) dump_vm();
|
2016-06-30 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void update_input(SDL_Event *ev)
|
|
|
|
{
|
|
|
|
switch (ev->type)
|
|
|
|
{
|
|
|
|
case SDL_QUIT:
|
|
|
|
running = false;
|
|
|
|
break;
|
2016-07-01 08:28:25 +00:00
|
|
|
case SDL_KEYDOWN:
|
|
|
|
if(ev->key.keysym.sym == SDLK_ESCAPE)
|
|
|
|
running = false;
|
|
|
|
break;
|
2016-06-30 09:22:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void initialize_vm()
|
|
|
|
{
|
|
|
|
// Initialize memory
|
|
|
|
mainCore.memoryBase = 0x00; // Linear memory, start at 0x00
|
|
|
|
mainCore.memorySize = 0x4000000; // 64 MB;
|
|
|
|
mainCore.memory = malloc(mainCore.memorySize);
|
|
|
|
|
|
|
|
// Initialize code execution
|
|
|
|
mainCore.code = mainCore.memory;
|
|
|
|
mainCore.codeLength = mainCore.memorySize / sizeof(instruction_t);
|
|
|
|
|
|
|
|
// Setup registers
|
|
|
|
mainCore.codePointer = 0;
|
|
|
|
mainCore.stackPointer = 0;
|
|
|
|
mainCore.basePointer = 0;
|
|
|
|
mainCore.flags = 0;
|
|
|
|
|
|
|
|
// Clear stack
|
|
|
|
memset(mainCore.stack, 0, VM_STACKSIZE * sizeof(uint32_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool load_exp(const char *fileName)
|
|
|
|
{
|
|
|
|
FILE *f = fopen(fileName, "rb");
|
|
|
|
if (f == NULL)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Could not open file %s\n", fileName);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
expfile_t fileHeader;
|
|
|
|
|
|
|
|
if (fread(&fileHeader, 1, sizeof(expfile_t), f) != sizeof(expfile_t))
|
|
|
|
{
|
|
|
|
fprintf(stderr, "File %s does not contain a valid header.\n", fileName);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (fileHeader.magicNumber != EXP_MAGIC)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Invalid magic in %s\n", fileName);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (fileHeader.majorVersion != 1 && fileHeader.minorVersion == 0)
|
|
|
|
{
|
|
|
|
fprintf(
|
|
|
|
stderr, "Invalid version %s: %d.%d\n",
|
|
|
|
fileName,
|
|
|
|
fileHeader.majorVersion, fileHeader.minorVersion);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < fileHeader.numSections; i++)
|
|
|
|
{
|
|
|
|
expsection_t section;
|
|
|
|
|
|
|
|
fseek(f, fileHeader.posSections + i * sizeof(expsection_t), SEEK_SET);
|
|
|
|
fread(§ion, 1, sizeof(expsection_t), f);
|
|
|
|
|
|
|
|
fseek(f, section.start, SEEK_SET);
|
|
|
|
|
|
|
|
uint8_t *sectionInRam = (uint8_t*)mainCore.memory + section.base;
|
|
|
|
int len = fread(sectionInRam, 1, section.length, f);
|
|
|
|
if (len != section.length)
|
|
|
|
fprintf(stderr, "Read invalid size.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-07-01 08:28:25 +00:00
|
|
|
void run_visual_mode()
|
2016-06-30 09:22:32 +00:00
|
|
|
{
|
|
|
|
if (SDL_Init(SDL_INIT_VIDEO) != 0) {
|
2016-07-01 08:28:25 +00:00
|
|
|
exit(1);
|
2016-06-30 09:22:32 +00:00
|
|
|
}
|
|
|
|
atexit(SDL_Quit);
|
|
|
|
|
|
|
|
SDL_Surface *screen = SDL_SetVideoMode(640, 480, 32, SDL_DOUBLEBUF);
|
|
|
|
SDL_WM_SetCaption("DasOS Virtual Platform", NULL);
|
2016-07-01 08:28:25 +00:00
|
|
|
|
2016-06-30 09:22:32 +00:00
|
|
|
SDL_Event ev;
|
|
|
|
while (running)
|
|
|
|
{
|
|
|
|
while (SDL_PollEvent(&ev))
|
|
|
|
{
|
|
|
|
update_input(&ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t start = SDL_GetTicks();
|
|
|
|
|
|
|
|
do {
|
|
|
|
for (int i = 0; i < 50 && running; i++)
|
|
|
|
{
|
|
|
|
update_vm();
|
|
|
|
}
|
|
|
|
} while (running && (SDL_GetTicks() - start) <= 32);
|
|
|
|
|
|
|
|
{ // copy screen
|
|
|
|
SDL_LockSurface(screen);
|
|
|
|
memcpy(
|
|
|
|
screen->pixels,
|
|
|
|
(uint8_t*)mainCore.memory + 4096,
|
|
|
|
screen->h * screen->pitch);
|
|
|
|
SDL_UnlockSurface(screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_Flip(screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_WM_SetCaption("DasOS Virtual Platform - STOPPED", NULL);
|
|
|
|
|
|
|
|
running = true;
|
|
|
|
while (running)
|
|
|
|
{
|
|
|
|
while (SDL_PollEvent(&ev))
|
|
|
|
{
|
|
|
|
if (ev.type == SDL_QUIT)
|
|
|
|
running = false;
|
|
|
|
else if (ev.type == SDL_KEYDOWN && ev.key.keysym.sym == SDLK_ESCAPE)
|
|
|
|
running = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_Flip(screen);
|
|
|
|
|
|
|
|
SDL_Delay(32);
|
|
|
|
}
|
2016-07-01 08:28:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void run_text_mode()
|
|
|
|
{
|
|
|
|
while (running)
|
|
|
|
{
|
|
|
|
//TODO: Insert some kind of text events.
|
|
|
|
update_vm();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
// Required before ANY virtual machine memory operations...
|
|
|
|
initialize_vm();
|
|
|
|
|
|
|
|
opterr = 0;
|
|
|
|
int c;
|
|
|
|
while ((c = getopt(argc, argv, "dV")) != -1)
|
|
|
|
{
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case 'd':
|
|
|
|
debugMode = 1;
|
|
|
|
break;
|
|
|
|
case 'V':
|
|
|
|
visualMode = 1;
|
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
if (optopt == 'o' || optopt == 'c' || optopt == 'd')
|
|
|
|
fprintf(stderr, "Option -%c requires an argument.\n", optopt);
|
|
|
|
else if (isprint(optopt))
|
|
|
|
fprintf(stderr, "Unknown option `-%c'.\n", optopt);
|
|
|
|
else
|
|
|
|
fprintf(stderr, "Unknown option character `\\x%x'.\n", optopt);
|
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (int index = optind; index < argc; index++)
|
|
|
|
{
|
|
|
|
fprintf(stdout, "Loading %s...\n", argv[index]);
|
|
|
|
if(load_exp(argv[index]) == 0) {
|
|
|
|
fprintf(stderr, "%s not found.\n", argv[index]);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(debugMode) dump_vm();
|
|
|
|
|
|
|
|
if(visualMode)
|
|
|
|
run_visual_mode();
|
|
|
|
else
|
|
|
|
run_text_mode();
|
2016-06-30 09:22:32 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|